03618ba72c
This allowed for deleting all script utilities and environment variable logic.
26 lines
465 B
Nix
26 lines
465 B
Nix
{
|
|
|
|
stdenv,
|
|
glibcStatic,
|
|
|
|
}: stdenv.mkDerivation rec {
|
|
|
|
pname = "dnsmasq";
|
|
version = "2.85";
|
|
|
|
src = builtins.fetchurl {
|
|
url = "https://www.thekelleys.org.uk/dnsmasq/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-rZjTgD32h+W5OAgPPSXGKP5ByHh1LQP7xhmXh/7jEvo=";
|
|
};
|
|
|
|
nativeBuildInputs = [ glibcStatic ];
|
|
|
|
makeFlags = [
|
|
"LDFLAGS=-static"
|
|
"DESTDIR="
|
|
"BINDIR=$(out)/bin"
|
|
"MANDIR=$(out)/man"
|
|
"LOCALEDIR=$(out)/share/locale"
|
|
];
|
|
}
|