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

strict-list: init at 0.1.7

parent b9961770
Branches
No related merge requests found
......@@ -252,6 +252,7 @@ let otherLibraries =
"https://github.com/milloni/strict-containers"
"9e833be00bc2c5cdb0b4e743b7a2cde00dd4f616"
(Some "strict-containers")
, H.callHackage "strict-list" "0.1.7"
, H.callHackage "testing-type-modifiers" "0.1.0.1"
, H.callHackage "th-desugar" "1.14"
, H.callHackage "time-units" "1.0.0"
......
......@@ -217,6 +217,8 @@ final: prev: with pkgs.haskell.lib; {
strict-containers = final.callPackage (./pkgs/strict-containers.nix) { };
strict-list = final.callPackage (./pkgs/strict-list.nix) { };
testing-type-modifiers = final.callPackage (./pkgs/testing-type-modifiers.nix) { };
th-desugar = final.callPackage (./pkgs/th-desugar.nix) { };
......
{ mkDerivation
, QuickCheck
, base
, deepseq
, hashable
, lib
, quickcheck-instances
, rerebase
, semigroupoids
, tasty
, tasty-hunit
, tasty-quickcheck
}:
mkDerivation {
pname = "strict-list";
version = "0.1.7";
sha256 = "70cd8accb5e1f68273b07c6cfe64e27f08815df59e2606bc5ed6f2fdcbb20e36";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base deepseq hashable semigroupoids ];
testHaskellDepends = [
QuickCheck
quickcheck-instances
rerebase
tasty
tasty-hunit
tasty-quickcheck
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/nikita-volkov/strict-list";
description = "Strict linked list";
license = lib.licenses.mit;
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