mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
* dhcpcd, another DHCP client (not tested). Hopefully it works better
than dhclient in conjunction with wpa_supplicant. svn path=/nixpkgs/trunk/; revision=16411
This commit is contained in:
parent
179c9415db
commit
9075d2a2cd
21
pkgs/tools/networking/dhcpcd/default.nix
Normal file
21
pkgs/tools/networking/dhcpcd/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dhcpcd-5.0.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://roy.marples.name/downloads/dhcpcd/${name}.tar.bz2";
|
||||
sha256 = "0q8yz1kg9x031lnsvws010wawg0z85xv34575x1iavh3lrd90705";
|
||||
};
|
||||
|
||||
makeFlags = "PREFIX=\${out}";
|
||||
|
||||
# Hack to make installation succeed. dhcpcd will still use /var/db
|
||||
# at runtime.
|
||||
installFlags = "DBDIR=\${TMPDIR}/db";
|
||||
|
||||
meta = {
|
||||
description = "A client for the Dynamic Host Configuration Protocol (DHCP)";
|
||||
homepage = http://roy.marples.name/projects/dhcpcd;
|
||||
};
|
||||
}
|
@ -604,6 +604,10 @@ let
|
||||
bash makeWrapper;
|
||||
};
|
||||
|
||||
dhcpcd = import ../tools/networking/dhcpcd {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
diffstat = import ../tools/text/diffstat {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user