2012-02-16 18:05:41 +04:00
|
|
|
{ cabal, base64Bytestring, cryptohash, random }:
|
2011-08-10 03:20:28 +04:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "pwstore-fast";
|
2012-09-18 14:04:01 +04:00
|
|
|
version = "2.3";
|
|
|
|
sha256 = "014l4n00lpg5037fkdwnxnv7xjfc3vlz1dphr7hfbqnjwf1z9ibw";
|
2012-02-16 18:05:41 +04:00
|
|
|
buildDepends = [ base64Bytestring cryptohash random ];
|
2011-08-10 03:20:28 +04:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/PeterScott/pwstore";
|
2011-08-11 17:03:51 +04:00
|
|
|
description = "Secure password storage";
|
2011-08-10 03:20:28 +04:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 14:21:28 +04:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-10 03:20:28 +04:00
|
|
|
};
|
|
|
|
})
|