Skip to content
Snippets Groups Projects
Commit 334e8270 authored by Daniel Firth's avatar Daniel Firth
Browse files

password: init at 3.0.2.0

parent bf685560
Branches
Tags
No related merge requests found
......@@ -303,6 +303,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "pandoc" "2.19.2"
, callHackage "parallel" "3.2.2.0"
, callHackage "password-types" "1.0.0.0"
, callHackage "password" "3.0.2.0"
, callHackage "pcg-random" "0.1.3.7"
, callHackage "pcre2" "2.2.1"
, callHackage "persistent" "2.14.3.0"
......
......@@ -359,6 +359,8 @@ final: prev: with pkgs.haskell.lib; {
parallel = prev.callPackage (./pkgs/parallel.nix) { };
password = prev.callPackage (./pkgs/password.nix) { };
password-types = prev.callPackage (./pkgs/password-types.nix) { };
pcg-random = prev.callPackage (./pkgs/pcg-random.nix) { };
......
{ mkDerivation, base, base-compat, base64, bytestring, Cabal
, cabal-doctest, cryptonite, doctest, lib, memory, password-types
, QuickCheck, quickcheck-instances, scrypt, tasty, tasty-hunit
, tasty-quickcheck, template-haskell, text
}:
mkDerivation {
pname = "password";
version = "3.0.2.0";
sha256 = "14c5b664ec2d3064059f8de7170c4eb10e847397de9f98a841b8ea5ea6cf4c24";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
base base64 bytestring cryptonite memory password-types
template-haskell text
];
testHaskellDepends = [
base base-compat bytestring cryptonite doctest memory
password-types QuickCheck quickcheck-instances scrypt tasty
tasty-hunit tasty-quickcheck template-haskell text
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/cdepillabout/password/tree/master/password#readme";
description = "Hashing and checking of passwords";
license = lib.licenses.bsd3;
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment