mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 10:31:36 +00:00
20 lines
599 B
Nix
20 lines
599 B
Nix
{ cabal, comonad, fingertree, hashable, keys, pointed, reducers
|
|
, semigroupoids, semigroups, unorderedContainers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "compressed";
|
|
version = "3.10";
|
|
sha256 = "1y290n421knfh8k8zbcabhw24hb13xj9pkxx4h4v15yji97p5mcw";
|
|
buildDepends = [
|
|
comonad fingertree hashable keys pointed reducers semigroupoids
|
|
semigroups unorderedContainers
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/ekmett/compressed/";
|
|
description = "Compressed containers and reducers";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|