1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/tools/networking/host/default.nix
Ludovic Courtès 31c156de83 Add `host', a DNS query utility.
svn path=/nixpkgs/trunk/; revision=13459
2008-11-27 13:54:49 +00:00

25 lines
575 B
Nix

{ fetchurl, stdenv }:
let version = "20000331"; in
stdenv.mkDerivation {
name = "host-${version}";
src = fetchurl {
url = "mirror://debian/pool/main/h/host/host_${version}.orig.tar.gz";
sha256 = "1g352k80arhwyidsa95nk28xjvzyypmwv3kga2451m3g7fmdqki1";
};
preConfigure = ''
substituteInPlace "Makefile" \
--replace "/usr/local" "$out" \
--replace '-o $(OWNER) -g $(GROUP)' ""
ensureDir "$out/bin"
'';
meta = {
description = "`host', a DNS resolution utility";
license = "BSD-style";
};
}