mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
a889b5bb66
svn path=/nixpkgs/trunk/; revision=15969
13 lines
298 B
Nix
13 lines
298 B
Nix
{cabal, multirec}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "zipper";
|
|
version = "0.3";
|
|
sha256 = "3f6cc0ea69734d0523f1bf74d14953f88a196e728f89a7cc91f394d9e0c13c15";
|
|
propagatedBuildInputs = [multirec];
|
|
meta = {
|
|
description = "Generic zipper for systems of recursive datatypes";
|
|
};
|
|
})
|
|
|