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