1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/lrucache/default.nix
2014-02-13 10:57:56 +01:00

14 lines
359 B
Nix

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