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

set-algebra: init at bc859395040abf075f4ca44b4ce8c221d2c4bb66 from github:milloni

parent 6d192124
Branches master
No related merge requests found
...@@ -184,6 +184,11 @@ in [ callHackage "PyF" "0.11.0.0" ...@@ -184,6 +184,11 @@ in [ callHackage "PyF" "0.11.0.0"
, callHackage "ral" "0.1" , callHackage "ral" "0.1"
, callHackage "recursion-schemes" "5.2.2.2" , callHackage "recursion-schemes" "5.2.2.2"
, callHackage "ref-tf" "0.5.0.1" , callHackage "ref-tf" "0.5.0.1"
, callCabal2nix
"set-algebra"
"https://github.com/milloni/cardano-ledger"
(Some "bc859395040abf075f4ca44b4ce8c221d2c4bb66")
(Some "libs/set-algebra")
, callHackage "singletons-th" "3.1.1" , callHackage "singletons-th" "3.1.1"
, callCabal2nix , callCabal2nix
"small-steps" "small-steps"
......
...@@ -77,6 +77,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -77,6 +77,8 @@ final: prev: with pkgs.haskell.lib; {
ref-tf = prev.callPackage (./pkgs/ref-tf.nix) { }; ref-tf = prev.callPackage (./pkgs/ref-tf.nix) { };
set-algebra = prev.callPackage (./pkgs/set-algebra.nix) { };
singletons-th = prev.callPackage (./pkgs/singletons-th.nix) { }; singletons-th = prev.callPackage (./pkgs/singletons-th.nix) { };
small-steps = prev.callPackage (./pkgs/small-steps.nix) { }; small-steps = prev.callPackage (./pkgs/small-steps.nix) { };
......
{ mkDerivation
, ansi-wl-pprint
, base
, cardano-data
, containers
, fetchgit
, lib
, tasty
, tasty-hunit
, tasty-quickcheck
}:
mkDerivation {
pname = "set-algebra";
version = "0.1.0.0";
src = fetchgit {
url = "https://github.com/milloni/cardano-ledger";
sha256 = "109piw0q5nlypsywkmkwng4ixalbfmzf379b4n931ghih54xzwja";
rev = "bc859395040abf075f4ca44b4ce8c221d2c4bb66";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/libs/set-algebra/; echo source root reset to $sourceRoot";
libraryHaskellDepends = [
ansi-wl-pprint
base
cardano-data
containers
];
testHaskellDepends = [
base
cardano-data
containers
tasty
tasty-hunit
tasty-quickcheck
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/input-output-hk/cardano-ledger";
description = "Set Algebra";
license = lib.licenses.asl20;
}
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