nixpkgs/pkgs/development/libraries/haskell/pwstore-fast/default.nix
Peter Simons f3da45c0c0 haskell-pwstore-fast: updated to version 2.2
svn path=/nixpkgs/trunk/; revision=28578
2011-08-15 08:34:56 +00:00

19 lines
562 B
Nix

{ cabal, base64Bytestring, cryptohash, random }:
cabal.mkDerivation (self: {
pname = "pwstore-fast";
version = "2.2";
sha256 = "03b9vr5j6cadvi6w3lr8b9km4jq6jh0vzcmkxzq9qvvly89lx96a";
buildDepends = [ base64Bytestring cryptohash random ];
meta = {
homepage = "https://github.com/PeterScott/pwstore";
description = "Secure password storage";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})