nixpkgs/pkgs/development/ocaml-modules/safepass/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
548 B
Nix
Raw Normal View History

2020-10-20 19:45:46 +00:00
{ lib, fetchFromGitHub, buildDunePackage }:
2020-10-20 19:45:46 +00:00
buildDunePackage rec {
pname = "safepass";
2021-04-08 05:12:49 +00:00
version = "3.1";
useDune2 = true;
2016-10-15 14:10:41 +00:00
2020-10-20 19:45:46 +00:00
src = fetchFromGitHub {
owner = "darioteixeira";
repo = "ocaml-safepass";
rev = "v${version}";
2021-04-08 05:12:49 +00:00
sha256 = "1cwslwdb1774lfmhcclj9kymvidbcpjx1vp16jnjirqdqgl4zs5q";
2016-10-15 14:10:41 +00:00
};
meta = {
2020-10-20 19:45:46 +00:00
inherit (src.meta) homepage;
description = "An OCaml library offering facilities for the safe storage of user passwords";
2020-10-20 19:45:46 +00:00
license = lib.licenses.lgpl21;
maintainers = with lib.maintainers; [ vbgl ];
};
2020-10-20 19:45:46 +00:00
}