nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 26 lines 574 B view raw
1{ 2 lib, 3 buildDunePackage, 4 fetchFromGitHub, 5}: 6 7buildDunePackage rec { 8 pname = "dtools"; 9 version = "0.4.6"; 10 11 minimalOCamlVersion = "4.05"; 12 13 src = fetchFromGitHub { 14 owner = "savonet"; 15 repo = "ocaml-dtools"; 16 rev = "v${version}"; 17 sha256 = "sha256-MIZM/IlPWPa/r/f8EXkhU8gZctOZeAIGZgxoGMF2IkE="; 18 }; 19 20 meta = { 21 homepage = "https://github.com/savonet/ocaml-dtools"; 22 description = "Library providing various helper functions to make daemons"; 23 license = lib.licenses.gpl2Only; 24 maintainers = with lib.maintainers; [ dandellion ]; 25 }; 26}