2014-02-28 17:33:21 +00:00
|
|
|
{ stdenv, fetchurl, makeWrapper, coreutils }:
|
2012-02-16 18:40:05 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-05-20 06:53:54 +00:00
|
|
|
name = "openresolv-3.7.0";
|
2012-02-16 18:40:05 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-10-16 17:18:34 +00:00
|
|
|
url = "mirror://roy/openresolv/${name}.tar.bz2";
|
2015-05-20 06:53:54 +00:00
|
|
|
sha256 = "1pimiipic4m90f832rgw3ayqrh457qfymcpfpj9iidb5c4phnz4b";
|
2012-02-16 18:40:05 +00:00
|
|
|
};
|
|
|
|
|
2014-02-28 17:33:21 +00:00
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
|
2012-02-16 18:40:05 +00:00
|
|
|
configurePhase =
|
|
|
|
''
|
|
|
|
cat > config.mk <<EOF
|
|
|
|
PREFIX=$out
|
|
|
|
SYSCONFDIR=/etc
|
|
|
|
SBINDIR=$out/sbin
|
|
|
|
LIBEXECDIR=$out/libexec/resolvconf
|
|
|
|
VARDIR=/var/run/resolvconf
|
|
|
|
MANDIR=$out/share/man
|
2012-03-01 14:45:27 +00:00
|
|
|
RESTARTCMD="false \1"
|
2012-02-16 18:40:05 +00:00
|
|
|
EOF
|
|
|
|
'';
|
|
|
|
|
|
|
|
installFlags = "SYSCONFDIR=$(out)/etc";
|
|
|
|
|
2014-02-28 17:33:21 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/sbin/resolvconf" --set PATH "${coreutils}/bin"
|
|
|
|
'';
|
|
|
|
|
2014-02-02 10:27:41 +00:00
|
|
|
meta = {
|
2012-02-16 18:40:05 +00:00
|
|
|
description = "A program to manage /etc/resolv.conf";
|
|
|
|
homepage = http://roy.marples.name/projects/openresolv;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.bsd2;
|
2014-02-02 10:27:41 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-02-16 18:40:05 +00:00
|
|
|
};
|
|
|
|
}
|