2016-11-23 14:58:19 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake
|
|
|
|
, dbus, networkmanager, spidermonkey_1_8_5 }:
|
2009-06-03 13:28:25 +01:00
|
|
|
|
2011-04-15 05:58:17 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-11-10 22:32:03 +00:00
|
|
|
name = "libproxy-${version}";
|
|
|
|
version = "0.4.13";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libproxy";
|
|
|
|
repo = "libproxy";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0yg4wr44ync6x3p107ic00m1l04xqhni9jn1vzvkw3nfjd0k6f92";
|
2009-06-03 13:28:25 +01:00
|
|
|
};
|
2013-04-03 14:13:11 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ]; # to deal with propagatedBuildInputs
|
2015-10-06 11:28:29 +01:00
|
|
|
|
2013-04-03 14:13:11 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
2016-11-23 14:58:19 +00:00
|
|
|
|
|
|
|
buildInputs = [ dbus networkmanager spidermonkey_1_8_5 ];
|
2016-08-02 17:06:29 +01:00
|
|
|
|
2016-11-10 22:32:03 +00: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 17:06:29 +01:00
|
|
|
};
|
2009-06-03 13:28:25 +01:00
|
|
|
}
|