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

deque: init at 0.4.4

parent 313c8783
No related merge requests found
...@@ -148,6 +148,7 @@ let otherLibraries = ...@@ -148,6 +148,7 @@ let otherLibraries =
, H.callHackage "contra-tracer" "0.2.0.0" , H.callHackage "contra-tracer" "0.2.0.0"
, H.callHackage "data-ordlist" "0.4.7.0" , H.callHackage "data-ordlist" "0.4.7.0"
, H.callHackage "dependent-sum-template" "0.1.1.1" , H.callHackage "dependent-sum-template" "0.1.1.1"
, H.callHackage "deque" "0.4.4"
, H.callHackage "deriving-compat" "0.6.1" , H.callHackage "deriving-compat" "0.6.1"
, H.callHackage "dictionary-sharing" "0.1.0.0" , H.callHackage "dictionary-sharing" "0.1.0.0"
, H.callHackage "doctest-discover" "0.2.0.0" , H.callHackage "doctest-discover" "0.2.0.0"
......
...@@ -97,6 +97,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -97,6 +97,8 @@ final: prev: with pkgs.haskell.lib; {
dependent-sum-template = final.callPackage (./pkgs/dependent-sum-template.nix) { }; dependent-sum-template = final.callPackage (./pkgs/dependent-sum-template.nix) { };
deque = final.callPackage (./pkgs/deque.nix) { };
deriving-compat = final.callPackage (./pkgs/deriving-compat.nix) { }; deriving-compat = final.callPackage (./pkgs/deriving-compat.nix) { };
dictionary-sharing = final.callPackage (./pkgs/dictionary-sharing.nix) { }; dictionary-sharing = final.callPackage (./pkgs/dictionary-sharing.nix) { };
......
{ mkDerivation
, QuickCheck
, base
, deepseq
, hashable
, lib
, mtl
, quickcheck-instances
, rerebase
, strict-list
, tasty
, tasty-hunit
, tasty-quickcheck
}:
mkDerivation {
pname = "deque";
version = "0.4.4";
sha256 = "d646d82001cc6b1f17a969ab1d479c2f65f31547c1741dfd7d7c12f7709319f4";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base deepseq hashable mtl strict-list ];
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/deque";
description = "Double-ended queues";
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