Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
horizon-platform
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
package-sets
horizon-platform
Commits
3ccbb37c
Commit
3ccbb37c
authored
2 years ago
by
Daniel Firth
Browse files
Options
Downloads
Patches
Plain Diff
ghc-typelits-knownnat: init at 0.7.7
parent
4f0d6b81
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
manifest.dhall
+1
-0
1 addition, 0 deletions
manifest.dhall
overlay.nix
+2
-0
2 additions, 0 deletions
overlay.nix
pkgs/ghc-typelits-knownnat.nix
+23
-0
23 additions, 0 deletions
pkgs/ghc-typelits-knownnat.nix
with
26 additions
and
0 deletions
manifest.dhall
+
1
−
0
View file @
3ccbb37c
...
@@ -217,6 +217,7 @@ in [ callHackage "Cabal" "3.8.1.0"
...
@@ -217,6 +217,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "ghc-lib-parser-ex" "9.4.0.0"
, callHackage "ghc-lib-parser-ex" "9.4.0.0"
, callHackage "ghc-paths" "0.1.0.12"
, callHackage "ghc-paths" "0.1.0.12"
, callHackage "ghc-tcplugins-extra" "0.4.3"
, callHackage "ghc-tcplugins-extra" "0.4.3"
, callHackage "ghc-typelits-knownnat" "0.7.7"
, callHackage "ghc-typelits-natnormalise" "0.7.7"
, callHackage "ghc-typelits-natnormalise" "0.7.7"
, callHackage "ghcid" "0.8.8"
, callHackage "ghcid" "0.8.8"
, callHackage "hackage-security" "0.6.2.2"
, callHackage "hackage-security" "0.6.2.2"
...
...
This diff is collapsed.
Click to expand it.
overlay.nix
+
2
−
0
View file @
3ccbb37c
...
@@ -229,6 +229,8 @@ final: prev: with pkgs.haskell.lib; {
...
@@ -229,6 +229,8 @@ final: prev: with pkgs.haskell.lib; {
ghc-tcplugins-extra
=
prev
.
callPackage
(
./pkgs/ghc-tcplugins-extra.nix
)
{
};
ghc-tcplugins-extra
=
prev
.
callPackage
(
./pkgs/ghc-tcplugins-extra.nix
)
{
};
ghc-typelits-knownnat
=
prev
.
callPackage
(
./pkgs/ghc-typelits-knownnat.nix
)
{
};
ghc-typelits-natnormalise
=
prev
.
callPackage
(
./pkgs/ghc-typelits-natnormalise.nix
)
{
};
ghc-typelits-natnormalise
=
prev
.
callPackage
(
./pkgs/ghc-typelits-natnormalise.nix
)
{
};
ghcid
=
prev
.
callPackage
(
./pkgs/ghcid.nix
)
{
};
ghcid
=
prev
.
callPackage
(
./pkgs/ghcid.nix
)
{
};
...
...
This diff is collapsed.
Click to expand it.
pkgs/ghc-typelits-knownnat.nix
0 → 100644
+
23
−
0
View file @
3ccbb37c
{
mkDerivation
,
base
,
ghc
,
ghc-prim
,
ghc-tcplugins-extra
,
ghc-typelits-natnormalise
,
lib
,
tasty
,
tasty-hunit
,
tasty-quickcheck
,
template-haskell
,
transformers
}:
mkDerivation
{
pname
=
"ghc-typelits-knownnat"
;
version
=
"0.7.7"
;
sha256
=
"c79018557e88cd1b3937d15d9fb75c4cc7e6b44856ad53b15ae4c421a385f92c"
;
libraryHaskellDepends
=
[
base
ghc
ghc-prim
ghc-tcplugins-extra
ghc-typelits-natnormalise
template-haskell
transformers
];
testHaskellDepends
=
[
base
ghc-typelits-natnormalise
tasty
tasty-hunit
tasty-quickcheck
];
doHaddock
=
false
;
jailbreak
=
true
;
doCheck
=
false
;
hyperlinkSource
=
false
;
homepage
=
"http://clash-lang.org/"
;
description
=
"Derive KnownNat constraints from other KnownNat constraints"
;
license
=
lib
.
licenses
.
bsd2
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment