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