Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchFromGitHub, 4 buildDunePackage, 5}: 6 7buildDunePackage rec { 8 pname = "swhid_core"; 9 version = "0.1"; 10 11 minimalOCamlVersion = "4.03"; 12 13 src = fetchFromGitHub { 14 owner = "OCamlPro"; 15 repo = "swhid_core"; 16 rev = version; 17 hash = "sha256-uLnVbptCvmBeNbOjGjyAWAKgzkKLDTYVFY6SNH2zf0A="; 18 }; 19 20 meta = { 21 description = "OCaml library to work with swhids"; 22 homepage = "https://github.com/ocamlpro/swhid_core"; 23 license = lib.licenses.isc; 24 maintainers = [ lib.maintainers.vbgl ]; 25 }; 26}