nixpkgs/pkgs/development/libraries/libproxy/default.nix

36 lines
990 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake
, dbus, networkmanager, spidermonkey_38, pcre, python2, python3 }:
stdenv.mkDerivation rec {
2016-11-10 22:32:03 +00:00
name = "libproxy-${version}";
version = "0.4.15";
2016-11-10 22:32:03 +00:00
src = fetchFromGitHub {
owner = "libproxy";
repo = "libproxy";
rev = version;
sha256 = "10swd3x576pinx33iwsbd4h15fbh2snmfxzcmab4c56nb08qlbrs";
};
outputs = [ "out" "dev" ]; # to deal with propagatedBuildInputs
nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ dbus networkmanager spidermonkey_38 pcre python2 python3 ];
preConfigure = ''
cmakeFlagsArray+=(
"-DWITH_MOZJS=ON"
"-DPYTHON2_SITEPKG_DIR=$out/${python2.sitePackages}"
"-DPYTHON3_SITEPKG_DIR=$out/${python3.sitePackages}"
)
'';
2016-11-10 22:32:03 +00:00
meta = with stdenv.lib; {
platforms = platforms.linux;
license = licenses.lgpl21;
homepage = http://libproxy.github.io/libproxy/;
2016-11-10 22:32:03 +00:00
description = "A library that provides automatic proxy configuration management";
};
}