summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/safepass/default.nix
blob: e8a50f45119e88e658e65b6cc9ac24f4a8b840fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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 = "An OCaml library offering facilities for the safe storage of user passwords";
    license = lib.licenses.lgpl21;
    maintainers = with lib.maintainers; [ vbgl ];
  };

}