nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

dhcpm: init at 0.2.3

+31
+31
pkgs/by-name/dh/dhcpm/package.nix
··· 1 + { 2 + fetchFromGitHub, 3 + lib, 4 + nix-update-script, 5 + rustPlatform, 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "dhcpm"; 10 + version = "0.2.3"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "leshow"; 14 + repo = "dhcpm"; 15 + tag = "v${version}"; 16 + hash = "sha256-vjKN9arR6Os3pgG89qmHt/0Ds5ToO38tLsQBay6VEIk="; 17 + }; 18 + 19 + useFetchCargoVendor = true; 20 + cargoHash = "sha256-L6+/buzhYoLdFh7x8EmT37JyY5Pr7oFzyOGbhvgNvlw="; 21 + 22 + passthru.updateScript = nix-update-script { }; 23 + 24 + meta = { 25 + description = "Dhcpm is a CLI tool for constructing & sending DHCP messages"; 26 + homepage = "https://github.com/leshow/dhcpm"; 27 + license = lib.licenses.mit; 28 + maintainers = [ lib.maintainers.jmbaur ]; 29 + mainProgram = "dhcpm"; 30 + }; 31 + }