Adding ppp and rp-pppoe for different point-to-point connectivity situations. Not tested for trivial reasons, but built OK

svn path=/nixpkgs/trunk/; revision=13925
This commit is contained in:
Michael Raskin
2009-02-01 13:54:20 +00:00
parent f47649b3db
commit cdf5d243a0
3 changed files with 91 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
a :
let
fetchurl = a.fetchurl;
version = a.lib.getAttr ["version"] "2.4.4" a;
buildInputs = with a; [
];
in
rec {
src = fetchurl {
url = "http://ppp.samba.org/ftp/ppp/ppp-${version}.tar.gz";
sha256 = "1sli1s478k85vmjdbrqm39nn5r20x9qgg3a0lbp2dwz50zy4bbsq";
};
inherit buildInputs;
configureFlags = [];
phaseNames = ["exportVars" "patchPrivileged" "doConfigure" "doMakeInstall"];
exportVars = a.noDepEntry(''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -lcrypt "
'');
/* We want to run it as far as we can with our current permissions
For example, dependent builds would prefer to run --version
without ever using setuid pppd. We are not setuid anyway, so.. */
patchPrivileged = a.FullDepEntry(''
sed -e '/privileged =/aprivileged = 1;' -i pppd/main.c
sed -e '/SH DESCRIPTION/a WARNING: Patched version unsuitable to be setuid root' -i pppd/pppd.8
'') ["minInit" "doUnpack"];
passthru = {
inherit version;
};
name = "ppp-" + version;
meta = {
description = "Point-to-point implementation for Linux and Solaris";
};
}