2016-11-23 06:58:19 -08:00
|
|
|
{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake
|
|
|
|
, dbus, networkmanager, spidermonkey_1_8_5 }:
|
2009-06-03 05:28:25 -07:00
|
|
|
|
2011-04-14 21:58:17 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2016-11-10 14:32:03 -08:00
|
|
|
name = "libproxy-${version}";
|
|
|
|
version = "0.4.13";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libproxy";
|
|
|
|
repo = "libproxy";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0yg4wr44ync6x3p107ic00m1l04xqhni9jn1vzvkw3nfjd0k6f92";
|
2009-06-03 05:28:25 -07:00
|
|
|
};
|
2013-04-03 06:13:11 -07:00
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" ]; # to deal with propagatedBuildInputs
|
2015-10-06 03:28:29 -07:00
|
|
|
|
2013-04-03 06:13:11 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
2016-11-23 06:58:19 -08:00
|
|
|
|
|
|
|
buildInputs = [ dbus networkmanager spidermonkey_1_8_5 ];
|
2016-08-02 09:06:29 -07:00
|
|
|
|
2016-11-10 14:32:03 -08:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
homepage = "http://libproxy.github.io/libproxy/";
|
|
|
|
description = "A library that provides automatic proxy configuration management";
|
2016-08-02 09:06:29 -07:00
|
|
|
};
|
2009-06-03 05:28:25 -07:00
|
|
|
}
|