Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 22 lines 570 B view raw
1{ lib, buildDunePackage, fetchFromGitHub }: 2 3buildDunePackage rec { 4 pname = "dtools"; 5 version = "0.4.4"; 6 7 minimalOCamlVersion = "4.05"; 8 9 src = fetchFromGitHub { 10 owner = "savonet"; 11 repo = "ocaml-dtools"; 12 rev = "v${version}"; 13 sha256 = "1xbgnij63crikfr2jvar6sf6c7if47qarg5yycdfidip21vhmawf"; 14 }; 15 16 meta = with lib; { 17 homepage = "https://github.com/savonet/ocaml-dtools"; 18 description = "Library providing various helper functions to make daemons"; 19 license = licenses.gpl2Plus; 20 maintainers = with maintainers; [ dandellion ]; 21 }; 22}