Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 23 lines 548 B view raw
1{ lib, fetchFromGitHub, buildDunePackage }: 2 3buildDunePackage rec { 4 pname = "safepass"; 5 version = "3.1"; 6 7 useDune2 = true; 8 9 src = fetchFromGitHub { 10 owner = "darioteixeira"; 11 repo = "ocaml-safepass"; 12 rev = "v${version}"; 13 sha256 = "1cwslwdb1774lfmhcclj9kymvidbcpjx1vp16jnjirqdqgl4zs5q"; 14 }; 15 16 meta = { 17 inherit (src.meta) homepage; 18 description = "An OCaml library offering facilities for the safe storage of user passwords"; 19 license = lib.licenses.lgpl21; 20 maintainers = with lib.maintainers; [ vbgl ]; 21 }; 22 23}