nixpkgs/pkgs/development/libraries/haskell/ListZipper/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

14 lines
349 B
Nix

{ cabal, QuickCheck }:
cabal.mkDerivation (self: {
pname = "ListZipper";
version = "1.2.0.2";
sha256 = "0z3izxpl21fxz43jpx7zqs965anb3gp5vidv3pwwznr88ss2j6a9";
buildDepends = [ QuickCheck ];
meta = {
description = "Simple zipper for lists";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})