summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/pwstore-fast/default.nix
blob: d75823d6025ea480dcf5d8a72df9ae17655ca4d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, base64Bytestring, cryptohash, random }:

cabal.mkDerivation (self: {
  pname = "pwstore-fast";
  version = "2.3";
  sha256 = "014l4n00lpg5037fkdwnxnv7xjfc3vlz1dphr7hfbqnjwf1z9ibw";
  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 ];
  };
})