nixpkgs/pkgs/development/libraries/haskell/lrucache/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
359 B
Nix

{ cabal }:
cabal.mkDerivation (self: {
pname = "lrucache";
version = "1.1.1.3";
sha256 = "1djjxlyfrk3wpgc4h6xljpray09v7lc956202k9bxra24vj5f1lm";
meta = {
homepage = "http://github.com/chowells79/lrucache";
description = "a simple, pure LRU cache";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})