nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 fetchFromGitHub,
4 buildDunePackage,
5}:
6
7buildDunePackage (finalAttrs: {
8 pname = "safepass";
9 version = "3.1";
10
11 src = fetchFromGitHub {
12 owner = "darioteixeira";
13 repo = "ocaml-safepass";
14 tag = "v${finalAttrs.version}";
15 hash = "sha256-uOhP6MMN5yitNOHu0OVlq8Vd/UySMgaro+ScsBqnmrM=";
16 };
17
18 meta = {
19 homepage = "https://github.com/darioteixeira/ocaml-safepass";
20 description = "OCaml library offering facilities for the safe storage of user passwords";
21 license = lib.licenses.lgpl21;
22 maintainers = with lib.maintainers; [ vbgl ];
23 };
24
25})