mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
495 B
Nix
16 lines
495 B
Nix
{ cabal, multirec }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "zipper";
|
|
version = "0.4.2";
|
|
sha256 = "1r8092amq5w9gl5szycl1r7wx87xnmkcapdzcwfa4c3pvxrhjy44";
|
|
buildDepends = [ multirec ];
|
|
meta = {
|
|
homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/Multirec";
|
|
description = "Generic zipper for families of recursive datatypes";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|