dbce2ffd0f
svn path=/nixpkgs/trunk/; revision=28492
19 lines
547 B
Nix
19 lines
547 B
Nix
{ cabal, base64Bytestring, cryptohash }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "pwstore-fast";
|
|
version = "2.1";
|
|
sha256 = "1gslxmipv3khv6fp6k62ip7fjn0jchzkhsqcdd8yrrkk8pdqdkya";
|
|
buildDepends = [ base64Bytestring cryptohash ];
|
|
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
|
|
];
|
|
};
|
|
})
|