f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
34 lines
891 B
Nix
34 lines
891 B
Nix
{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake
|
|
, dbus, networkmanager, webkitgtk216x, pcre, python2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libproxy-${version}";
|
|
version = "0.4.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libproxy";
|
|
repo = "libproxy";
|
|
rev = version;
|
|
sha256 = "0yg4wr44ync6x3p107ic00m1l04xqhni9jn1vzvkw3nfjd0k6f92";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ]; # to deal with propagatedBuildInputs
|
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
|
|
|
buildInputs = [ dbus networkmanager webkitgtk216x pcre ];
|
|
|
|
cmakeFlags = [
|
|
"-DWITH_WEBKIT3=ON"
|
|
"-DWITH_MOZJS=OFF"
|
|
"-DPYTHON_SITEPKG_DIR=$(out)/${python2.sitePackages}"
|
|
];
|
|
|
|
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";
|
|
};
|
|
}
|