Skip to content
Snippets Groups Projects
Commit b3270e4a authored by Max Tomago's avatar Max Tomago
Browse files

haskell-src: init at 1.0.4

parent 78392b8c
No related merge requests found
...@@ -158,6 +158,7 @@ in [ callHackage "HTF" "0.15.0.0" ...@@ -158,6 +158,7 @@ in [ callHackage "HTF" "0.15.0.0"
"https://github.com/milloni/gray-code-0.3.1" "https://github.com/milloni/gray-code-0.3.1"
(Some "f310a19e44416206633cfd084f10ffb7cfea9f1d") (Some "f310a19e44416206633cfd084f10ffb7cfea9f1d")
(None Text) (None Text)
, callHackage "haskell-src" "1.0.4"
, callCabal2nix , callCabal2nix
"heapwords" "heapwords"
"https://github.com/input-output-hk/cardano-base" "https://github.com/input-output-hk/cardano-base"
......
...@@ -97,6 +97,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -97,6 +97,8 @@ final: prev: with pkgs.haskell.lib; {
gray-code = prev.callPackage (./pkgs/gray-code.nix) { }; gray-code = prev.callPackage (./pkgs/gray-code.nix) { };
haskell-src = prev.callPackage (./pkgs/haskell-src.nix) { };
heapwords = prev.callPackage (./pkgs/heapwords.nix) { }; heapwords = prev.callPackage (./pkgs/heapwords.nix) { };
hedgehog-quickcheck = prev.callPackage (./pkgs/hedgehog-quickcheck.nix) { }; hedgehog-quickcheck = prev.callPackage (./pkgs/hedgehog-quickcheck.nix) { };
......
{ mkDerivation, array, base, happy, lib, pretty, syb }:
mkDerivation {
pname = "haskell-src";
version = "1.0.4";
sha256 = "8bc77695f9cc113933048409d2ed3bf2a3b947e18312a23b0dbb7838d086f3ea";
revision = "1";
editedCabalFile = "0dfjzq0sxxcalqxygp2svx4890qx8b4amad0xldwy1f4xrp3lsnb";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ array base pretty syb ];
libraryToolDepends = [ happy ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Support for manipulating Haskell source code";
license = lib.licenses.bsd3;
broken = false;
}
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