depot/pkgs/development/ocaml-modules/safepass/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

23 lines
545 B
Nix

{ lib, fetchFromGitHub, buildDunePackage }:
buildDunePackage rec {
pname = "safepass";
version = "3.1";
useDune2 = true;
src = fetchFromGitHub {
owner = "darioteixeira";
repo = "ocaml-safepass";
rev = "v${version}";
sha256 = "1cwslwdb1774lfmhcclj9kymvidbcpjx1vp16jnjirqdqgl4zs5q";
};
meta = {
inherit (src.meta) homepage;
description = "OCaml library offering facilities for the safe storage of user passwords";
license = lib.licenses.lgpl21;
maintainers = with lib.maintainers; [ vbgl ];
};
}