mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
bf414c9d4f
- there were many easy merge conflicts - cc-wrapper needed nontrivial changes Many other problems might've been created by interaction of the branches, but stdenv and a few other packages build fine now.
32 lines
782 B
Nix
32 lines
782 B
Nix
{ stdenv, fetchurl, substituteAll, libpcap }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.4.7";
|
|
name = "ppp-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://samba/ppp/${name}.tar.gz";
|
|
sha256 = "0c7vrjxl52pdwi4ckrvfjr08b31lfpgwf3pp0cqy76a77vfs7q02";
|
|
};
|
|
|
|
patches =
|
|
[ ( substituteAll {
|
|
src = ./nix-purity.patch;
|
|
inherit libpcap;
|
|
glibc = stdenv.cc.libc.dev;
|
|
})
|
|
# Without nonpriv.patch, pppd --version doesn't work when not run as
|
|
# root.
|
|
./nonpriv.patch
|
|
];
|
|
|
|
buildInputs = [ libpcap ];
|
|
|
|
meta = {
|
|
homepage = https://ppp.samba.org/;
|
|
description = "Point-to-point implementation for Linux and Solaris";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.falsifian ];
|
|
};
|
|
}
|