Skip to content
Snippets Groups Projects
Commit 3ccbb37c authored by Daniel Firth's avatar Daniel Firth
Browse files

ghc-typelits-knownnat: init at 0.7.7

parent 4f0d6b81
No related merge requests found
...@@ -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"
......
...@@ -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) { };
......
{ 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
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment