summaryrefslogtreecommitdiff
path: root/custom
diff options
context:
space:
mode:
Diffstat (limited to 'custom')
-rw-r--r--custom/dhcp-helper.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/custom/dhcp-helper.nix b/custom/dhcp-helper.nix
new file mode 100644
index 00000000..433528a3
--- /dev/null
+++ b/custom/dhcp-helper.nix
@@ -0,0 +1,13 @@
1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "dhcp-helper-${version}";
5 version = "1.2-1";
6
7 src = fetchurl {
8 url = "mirror://debian/pool/main/d/dhcp-helper/dhcp-helper_${version}.tar.gz";
9 sha256 = "0jby762a5f7mxwcfjzfr8rs0v4b6xi7l8vsbhpxjb2qzmzj4f5ni";
10 };
11
12 makeFlags = "PREFIX=$(out)";
13}