Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • tchoutri/horizon-platform
  • raoulhc/horizon-platform
  • jonge/horizon-platform
  • package-sets/horizon-platform
Show changes
Showing
with 348 additions and 354 deletions
{ mkDerivation
, base
, containers
, criterion
, cursor
, cursor-dirforest
, cursor-gen
, dirforest
, fetchgit
, filepath
, genvalidity
, genvalidity-containers
, genvalidity-criterion
, genvalidity-dirforest
, genvalidity-hspec
, genvalidity-hspec-optics
, hspec
, lib
, path
, QuickCheck
{ mkDerivation, QuickCheck, base, containers, criterion, cursor
, cursor-dirforest, cursor-gen, dirforest, fetchgit, filepath
, genvalidity, genvalidity-containers, genvalidity-criterion
, genvalidity-dirforest, genvalidity-hspec
, genvalidity-hspec-optics, hspec, lib, path
}:
mkDerivation {
pname = "cursor-dirforest-gen";
......@@ -33,41 +18,20 @@ mkDerivation {
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
containers
cursor
cursor-dirforest
cursor-gen
dirforest
filepath
genvalidity
genvalidity-containers
genvalidity-dirforest
path
QuickCheck
base containers cursor cursor-dirforest cursor-gen dirforest
filepath genvalidity genvalidity-containers genvalidity-dirforest
path QuickCheck
];
testHaskellDepends = [
base
cursor
cursor-dirforest
cursor-gen
dirforest
genvalidity-hspec
genvalidity-hspec-optics
hspec
path
QuickCheck
base cursor cursor-dirforest cursor-gen dirforest genvalidity-hspec
genvalidity-hspec-optics hspec path QuickCheck
];
benchmarkHaskellDepends = [
base
criterion
cursor-dirforest
genvalidity-criterion
QuickCheck
base criterion cursor-dirforest genvalidity-criterion QuickCheck
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -75,4 +39,4 @@ mkDerivation {
homepage = "https://github.com/NorfairKing/cursor-dirforest#readme";
license = lib.licenses.mit;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, base
, containers
, cursor
, deepseq
, dirforest
, fetchgit
, filepath
, lib
, microlens
, path
, text
, validity
{ mkDerivation, base, containers, cursor, deepseq, dirforest
, fetchgit, filepath, lib, microlens, path, text, validity
, validity-path
}:
mkDerivation {
......@@ -27,21 +16,12 @@ mkDerivation {
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
containers
cursor
deepseq
dirforest
filepath
microlens
path
text
validity
validity-path
base containers cursor deepseq dirforest filepath microlens path
text validity validity-path
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -49,4 +29,4 @@ mkDerivation {
homepage = "https://github.com/NorfairKing/cursor-dirforest#readme";
license = lib.licenses.mit;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, base
, hashable
, lib
, unordered-containers
, validity
{ mkDerivation, base, cursor, deepseq, fuzzy-time, lib, megaparsec
, microlens, text, time, validity
}:
mkDerivation {
pname = "validity-unordered-containers";
version = "0.2.0.3";
sha256 = "f20d6b20b9695379f3478b357cd7c0968c3726ef4336eb0c652b84a34e332a87";
pname = "cursor-fuzzy-time";
version = "0.1.0.0";
sha256 = "4389c792a98a2b0c8b6a6e9f89b8db9ad2f5211623174dbdbf4f60a2f323bcb5";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
hashable
unordered-containers
base cursor deepseq fuzzy-time megaparsec microlens text time
validity
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/NorfairKing/validity#readme";
description = "Validity instances for unordered-containers";
homepage = "https://github.com/NorfairKing/fuzzy-time";
license = lib.licenses.mit;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, base
, containers
, criterion
, cursor
, genvalidity
, genvalidity-containers
, genvalidity-criterion
, genvalidity-hspec
, genvalidity-hspec-optics
, genvalidity-text
, hspec
, lib
, microlens
, pretty-show
, QuickCheck
, text
{ mkDerivation, QuickCheck, base, containers, criterion, cursor
, genvalidity, genvalidity-containers, genvalidity-criterion
, genvalidity-hspec, genvalidity-hspec-optics, genvalidity-text
, hspec, lib, microlens, pretty-show, text
}:
mkDerivation {
pname = "cursor-gen";
......@@ -24,36 +11,19 @@ mkDerivation {
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
containers
cursor
genvalidity
genvalidity-containers
genvalidity-text
QuickCheck
text
base containers cursor genvalidity genvalidity-containers
genvalidity-text QuickCheck text
];
testHaskellDepends = [
base
containers
cursor
genvalidity-hspec
genvalidity-hspec-optics
hspec
microlens
pretty-show
QuickCheck
text
base containers cursor genvalidity-hspec genvalidity-hspec-optics
hspec microlens pretty-show QuickCheck text
];
benchmarkHaskellDepends = [
base
criterion
cursor
genvalidity-criterion
base criterion cursor genvalidity-criterion
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -62,4 +32,4 @@ mkDerivation {
description = "Generators for Purely Functional Cursors";
license = lib.licenses.mit;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, base
, containers
, deepseq
, lib
, microlens
, text
, validity
, validity-containers
, validity-text
{ mkDerivation, base, containers, deepseq, lib, microlens, text
, validity, validity-containers, validity-text
}:
mkDerivation {
pname = "cursor";
......@@ -17,18 +9,12 @@ mkDerivation {
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
containers
deepseq
microlens
text
validity
validity-containers
base containers deepseq microlens text validity validity-containers
validity-text
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -37,4 +23,4 @@ mkDerivation {
description = "Purely Functional Cursors";
license = lib.licenses.mit;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, base
, bytestring
, cereal
, containers
, data-default
, directory
, filepath
, ghc-prim
, HUnit
, lib
, network
, pipes
, test-framework
, test-framework-hunit
, transformers
, unix
}:
mkDerivation {
pname = "daemons";
version = "0.3.0";
sha256 = "c36f4f13aaf7d114925a559748c935f42397094c2f82c6809956d130261e0016";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base
bytestring
cereal
data-default
directory
filepath
ghc-prim
network
pipes
transformers
unix
];
executableHaskellDepends = [
base
bytestring
cereal
containers
data-default
ghc-prim
network
pipes
transformers
];
testHaskellDepends = [
base
data-default
directory
ghc-prim
HUnit
test-framework
test-framework-hunit
unix
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/scvalex/daemons";
description = "Daemons in Haskell made fun and easy";
license = lib.licenses.gpl3Only;
broken = false;
}
{ mkDerivation, base, ghc-prim, lib, tasty, tasty-quickcheck }:
mkDerivation {
pname = "data-bword";
version = "0.1.0.2";
sha256 = "d64880e7d6c7a2d635d7e79552888f415a417379ee637a29321abf08187e9635";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ghc-prim ];
testHaskellDepends = [ base tasty tasty-quickcheck ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/mvv/data-bword";
description = "Extra operations on binary words of fixed length";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, deepseq, lib }:
mkDerivation {
pname = "sop-core";
version = "0.5.0.1";
sha256 = "dac367f1608c9bd6c5dd1697e2a30e1b760617023b96e1df7d44c6c017999db0";
revision = "1";
editedCabalFile = "1d4sagrlhmvai3f4hvb9rn8aqsjbvi00z0mzv1gds9nblshk83xd";
pname = "data-checked";
version = "0.3";
sha256 = "dc87d09c7c8587c9e6e372166e8de3b42c2cd804a493ff100c253e4d713c5676";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base deepseq ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "True Sums of Products";
homepage = "https://github.com/mvv/data-checked";
description = "Type-indexed runtime-checked properties";
license = lib.licenses.bsd3;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, aeson
, base
, base-compat
, binary
, containers
, deepseq
, lib
, vector
{ mkDerivation, base, data-bword, ghc-prim, hashable, lib, tasty
, tasty-quickcheck, template-haskell
}:
mkDerivation {
pname = "criterion-measurement";
version = "0.2.0.0";
sha256 = "4a1a50d74341ee23ad7250da8eafdd0a40bcd4d08836ec76c956dcc1c9b2cab3";
pname = "data-dword";
version = "0.3.2.1";
sha256 = "1114f1efd8f8e80517f7a1df7e73e8a0f3dcc9414f3ba5669f05b29f90dfdd50";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
base
base-compat
binary
containers
deepseq
vector
base data-bword ghc-prim hashable template-haskell
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
testHaskellDepends = [ base tasty tasty-quickcheck ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell/criterion";
description = "Criterion measurement functionality and associated types";
homepage = "https://github.com/mvv/data-dword";
description = "Stick two binary words together to get a bigger one";
license = lib.licenses.bsd3;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation, base, lib }:
mkDerivation {
pname = "void";
version = "0.7.3";
sha256 = "53af758ddc37dc63981671e503438d02c6f64a2d8744e9bec557a894431f7317";
pname = "data-endian";
version = "0.1.1";
sha256 = "8c1d4f30374f8331d31f4d7c6b39284331b6b9436e7b50f86547417bd05f2ac0";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/ekmett/void";
description = "A Haskell 98 logically uninhabited data type";
homepage = "https://github.com/mvv/data-endian";
description = "Endian-sensitive data";
license = lib.licenses.bsd3;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation, base, deepseq, hashable, lib }:
mkDerivation {
pname = "data-fix";
version = "0.3.2";
sha256 = "3a172d3bc0639c327345e965f9d9023e099425814b28dcdb7b60ff66d66219cc";
revision = "3";
editedCabalFile = "0z77i9y86wlc13396akl8qxq39rwpkhhcs5fadzk47bwn7v1gsmx";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base deepseq hashable ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/spell-music/data-fix";
description = "Fixpoint data types";
license = lib.licenses.bsd3;
broken = false;
}
{ mkDerivation, base, lib }:
mkDerivation {
pname = "data-ordlist";
version = "0.4.7.0";
sha256 = "6f6c1e7a9a9155ad78ca78cb9abd6f7e2e1c78b3e549b179dc0874e6428f490d";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Set and bag operations on ordered lists";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation
, base
, clock
, directory
, filepath
, lib
, process
, QuickCheck
, quickcheck-instances
, time
, unix
{ mkDerivation, base, binary, bytestring, cereal, data-endian, lib
, parsers, split, tasty, tasty-quickcheck
}:
mkDerivation {
pname = "extra";
version = "1.7.12";
sha256 = "e571a9ec1d8865f0fbb0e0ba1eb575f783b0365c80db19b54a93600bae43b03c";
pname = "data-serializer";
version = "0.3.5";
sha256 = "b4a0bfdeef7c8c77006682c46addf4ee9e1c8e51b5e01c7ac324813cd16ffd43";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
clock
directory
filepath
process
time
unix
base binary bytestring cereal data-endian parsers split
];
testHaskellDepends = [
base
directory
filepath
QuickCheck
quickcheck-instances
unix
base binary bytestring cereal tasty tasty-quickcheck
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/ndmitchell/extra#readme";
description = "Extra functions I use";
homepage = "https://github.com/mvv/data-serializer";
description = "Common API for serialization libraries";
license = lib.licenses.bsd3;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, base
, deepseq
, ghc-prim
, lib
, mwc-random
, primitive
, vector
, vector-algorithms
{ mkDerivation, base, deepseq, ghc-prim, lib, mwc-random, primitive
, vector, vector-algorithms
}:
mkDerivation {
pname = "data-sketches-core";
......@@ -16,26 +9,14 @@ mkDerivation {
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
deepseq
ghc-prim
mwc-random
primitive
vector
vector-algorithms
base deepseq ghc-prim mwc-random primitive vector vector-algorithms
];
testHaskellDepends = [
base
deepseq
ghc-prim
mwc-random
primitive
vector
vector-algorithms
base deepseq ghc-prim mwc-random primitive vector vector-algorithms
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -43,4 +24,4 @@ mkDerivation {
homepage = "https://github.com/iand675/datasketches-haskell#readme";
license = lib.licenses.bsd3;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, base
, criterion
, data-sketches-core
, ghc-prim
, hspec
, hspec-discover
, lib
, mtl
, mwc-random
, pretty-show
, primitive
, QuickCheck
, statistics
, vector
, vector-algorithms
{ mkDerivation, QuickCheck, base, criterion, data-sketches-core
, ghc-prim, hspec, hspec-discover, lib, mtl, mwc-random
, pretty-show, primitive, statistics, vector, vector-algorithms
}:
mkDerivation {
pname = "data-sketches";
......@@ -23,45 +10,22 @@ mkDerivation {
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
data-sketches-core
ghc-prim
mtl
mwc-random
primitive
vector
base data-sketches-core ghc-prim mtl mwc-random primitive vector
vector-algorithms
];
testHaskellDepends = [
base
data-sketches-core
ghc-prim
hspec
hspec-discover
mtl
mwc-random
pretty-show
primitive
QuickCheck
statistics
vector
base data-sketches-core ghc-prim hspec hspec-discover mtl
mwc-random pretty-show primitive QuickCheck statistics vector
vector-algorithms
];
testToolDepends = [ hspec-discover ];
benchmarkHaskellDepends = [
base
criterion
data-sketches-core
ghc-prim
mtl
mwc-random
primitive
vector
vector-algorithms
base criterion data-sketches-core ghc-prim mtl mwc-random primitive
vector vector-algorithms
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -69,4 +33,4 @@ mkDerivation {
homepage = "https://github.com/iand675/datasketches-haskell#readme";
license = lib.licenses.asl20;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation, QuickCheck, base, bytestring, lib, parsers
, test-framework, test-framework-quickcheck2, text, text-latin1
, text-printer, type-hint
}:
mkDerivation {
pname = "data-textual";
version = "0.3.0.3";
sha256 = "4b9ee8ccd03f24203dd9307bf9aa67180ff0f07b45c3a01e33d8185ff275ec9a";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base bytestring parsers text text-latin1 text-printer
];
testHaskellDepends = [
base parsers QuickCheck test-framework test-framework-quickcheck2
text-printer type-hint
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/mvv/data-textual";
description = "Human-friendly textual representations";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, QuickCheck, base, bytestring, cereal, conduit
, containers, criterion, deepseq, directory, exceptions, extra
, filepath, lens, lib, network, parsec, process, random, resourcet
, split, tasty, tasty-hunit, tasty-quickcheck, template-haskell
, temporary, text, th-lift, transformers, unix, vector, xml-conduit
, xml-types
}:
mkDerivation {
pname = "dbus";
version = "1.3.5";
sha256 = "2e61f469ff17a1703018c9e8b88d6fc0c6b48af0fe295c33b0b7bf7dbb5684f0";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base bytestring cereal conduit containers deepseq exceptions
filepath lens network parsec random split template-haskell text
th-lift transformers unix vector xml-conduit xml-types
];
testHaskellDepends = [
base bytestring cereal containers directory extra filepath network
parsec process QuickCheck random resourcet tasty tasty-hunit
tasty-quickcheck temporary text transformers unix vector
];
benchmarkHaskellDepends = [ base criterion ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/rblaze/haskell-dbus#readme";
description = "A client library for the D-Bus IPC system";
license = lib.licenses.asl20;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, bytestring, containers, foldl, hashable, lib
, primitive, quickcheck-instances, rerebase, tasty
, tasty-quickcheck, text, transformers, unordered-containers
, vector
}:
mkDerivation {
pname = "deferred-folds";
version = "0.9.18.6";
sha256 = "ebffce410040c77d2babee73f45ab7e79da7dcec424590a991b6dc0b8a1b8f02";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base bytestring containers foldl hashable primitive text
transformers unordered-containers vector
];
testHaskellDepends = [
quickcheck-instances rerebase tasty tasty-quickcheck
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/nikita-volkov/deferred-folds";
description = "Abstractions over deferred folds";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation
, base
, deepseq
, hspec
, lib
, math-functions
, primitive
, QuickCheck
, vector
, vector-algorithms
, vector-binary-instances
, vector-th-unbox
}:
mkDerivation {
pname = "dense-linear-algebra";
version = "0.1.0.0";
sha256 = "f7777a7931b40332ebbc716f64abb63697cbab0128e5c1228d47760c5597f2d4";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
deepseq
math-functions
primitive
vector
vector-algorithms
vector-binary-instances
vector-th-unbox
];
testHaskellDepends = [ base hspec QuickCheck ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Simple and incomplete pure haskell implementation of linear algebra";
license = lib.licenses.bsd2;
broken = false;
}
{ mkDerivation
, base
, base-compat
, ghc-prim
, hspec
, hspec-discover
, lib
, QuickCheck
{ mkDerivation, base, deepseq, hashable, lib, mtl, rerebase
, strict-list, tasty, tasty-quickcheck
}:
mkDerivation {
pname = "base-compat-batteries";
version = "0.12.2";
sha256 = "ede9092e07f904e0759160bf1ecd3fb7eb043bae6dc89a37c3dc94829ec5eb99";
pname = "deque";
version = "0.4.4.1";
sha256 = "da775f9e524bfeebadb3ac4077dca3e261def708ed8d5779b0a48a5fe584de3f";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base base-compat ghc-prim ];
testHaskellDepends = [ base hspec QuickCheck ];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
libraryHaskellDepends = [ base deepseq hashable mtl strict-list ];
testHaskellDepends = [ rerebase tasty tasty-quickcheck ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "base-compat with extra batteries";
homepage = "https://github.com/nikita-volkov/deque";
description = "Double-ended queues";
license = lib.licenses.mit;
broken = false;
}
}
\ No newline at end of file