Merge branch 'packagekit'
This commit is contained in:
commit
8cb08677fd
@ -2,6 +2,7 @@
|
|||||||
, intltool, spidermonkey_17 , gobjectIntrospection, libxslt, docbook_xsl
|
, intltool, spidermonkey_17 , gobjectIntrospection, libxslt, docbook_xsl
|
||||||
, docbook_xml_dtd_412, gtk-doc
|
, docbook_xml_dtd_412, gtk-doc
|
||||||
, useSystemd ? stdenv.isLinux, systemd
|
, useSystemd ? stdenv.isLinux, systemd
|
||||||
|
, doCheck ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -37,15 +38,16 @@ stdenv.mkDerivation rec {
|
|||||||
url = "http://src.fedoraproject.org/cgit/rpms/polkit.git/plain/polkit-0.113-itstool.patch?id=fa6fd575804de92886c95d3bc2b7eb2abcd13760";
|
url = "http://src.fedoraproject.org/cgit/rpms/polkit.git/plain/polkit-0.113-itstool.patch?id=fa6fd575804de92886c95d3bc2b7eb2abcd13760";
|
||||||
sha256 = "0bxmjwp8ahy1y5g1l0kxmld0l3mlvb2l0i5n1qabia3d5iyjkyfh";
|
sha256 = "0bxmjwp8ahy1y5g1l0kxmld0l3mlvb2l0i5n1qabia3d5iyjkyfh";
|
||||||
})
|
})
|
||||||
]
|
(fetchpatch {
|
||||||
# Could be applied uncondtionally but don't want to trigger rebuild
|
name = "netgroup-optional.patch";
|
||||||
# https://bugs.freedesktop.org/show_bug.cgi?id=50145
|
url = "https://bugs.freedesktop.org/attachment.cgi?id=118753";
|
||||||
++ stdenv.lib.optional stdenv.hostPlatform.isMusl (fetchpatch {
|
sha256 = "1zq51dhmqi9zi86bj9dq4i4pxlxm41k3k4a091j07bd78cjba038";
|
||||||
name = "netgroup-optional.patch";
|
})
|
||||||
url = "https://bugs.freedesktop.org/attachment.cgi?id=118753";
|
];
|
||||||
sha256 = "1zq51dhmqi9zi86bj9dq4i4pxlxm41k3k4a091j07bd78cjba038";
|
|
||||||
});
|
|
||||||
|
|
||||||
|
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
||||||
|
sed -i -e "s/-Wl,--as-needed//" configure.ac
|
||||||
|
'';
|
||||||
|
|
||||||
outputs = [ "bin" "dev" "out" ]; # small man pages in $bin
|
outputs = [ "bin" "dev" "out" ]; # small man pages in $bin
|
||||||
|
|
||||||
@ -83,22 +85,22 @@ stdenv.mkDerivation rec {
|
|||||||
"--with-polkitd-user=polkituser" #TODO? <nixos> config.ids.uids.polkituser
|
"--with-polkitd-user=polkituser" #TODO? <nixos> config.ids.uids.polkituser
|
||||||
"--with-os-type=NixOS" # not recognized but prevents impurities on non-NixOS
|
"--with-os-type=NixOS" # not recognized but prevents impurities on non-NixOS
|
||||||
"--enable-introspection"
|
"--enable-introspection"
|
||||||
];
|
] ++ stdenv.lib.optional (!doCheck) "--disable-test";
|
||||||
|
|
||||||
makeFlags = "INTROSPECTION_GIRDIR=$(out)/share/gir-1.0 INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0";
|
makeFlags = "INTROSPECTION_GIRDIR=$(out)/share/gir-1.0 INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0";
|
||||||
|
|
||||||
# The following is required on grsecurity/PaX due to spidermonkey's JIT
|
# The following is required on grsecurity/PaX due to spidermonkey's JIT
|
||||||
postBuild = ''
|
postBuild = stdenv.lib.optionalString stdenv.isLinux ''
|
||||||
paxmark mr src/polkitbackend/.libs/polkitd
|
paxmark mr src/polkitbackend/.libs/polkitd
|
||||||
paxmark mr test/polkitbackend/.libs/polkitbackendjsauthoritytest
|
paxmark mr test/polkitbackend/.libs/polkitbackendjsauthoritytest
|
||||||
'';
|
'';
|
||||||
|
|
||||||
#doCheck = true; # some /bin/bash problem that isn't auto-solved by patchShebangs
|
inherit doCheck;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.freedesktop.org/wiki/Software/polkit;
|
homepage = http://www.freedesktop.org/wiki/Software/polkit;
|
||||||
description = "A toolkit for defining and handling the policy that allows unprivileged processes to speak to privileged processes";
|
description = "A toolkit for defining and handling the policy that allows unprivileged processes to speak to privileged processes";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.unix;
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
{ stdenv, fetchFromGitHub, lib
|
{ stdenv, fetchFromGitHub, lib
|
||||||
, intltool, glib, pkgconfig, polkit, python, sqlite, systemd
|
, intltool, glib, pkgconfig, polkit, python, sqlite
|
||||||
, gobjectIntrospection, vala_0_38, gtk-doc, autoreconfHook, autoconf-archive
|
, gobjectIntrospection, vala_0_38, gtk-doc, autoreconfHook, autoconf-archive
|
||||||
# TODO: set enableNixBackend to true, as soon as it builds
|
# TODO: set enableNixBackend to true, as soon as it builds
|
||||||
, nix, enableNixBackend ? false, boost
|
, nix, enableNixBackend ? false, boost
|
||||||
, enableCommandNotFound ? false
|
, enableCommandNotFound ? false
|
||||||
, enableBashCompletion ? false, bash-completion ? null }:
|
, enableBashCompletion ? false, bash-completion ? null
|
||||||
|
, enableSystemd ? stdenv.isLinux, systemd }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "packagekit-${version}";
|
name = "packagekit-${version}";
|
||||||
@ -17,7 +18,8 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "11drd6ixx75q3w12am3z1npwllq1kxnhbxv0npng92c69kn291zs";
|
sha256 = "11drd6ixx75q3w12am3z1npwllq1kxnhbxv0npng92c69kn291zs";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ glib polkit systemd python gobjectIntrospection vala_0_38 ]
|
buildInputs = [ glib polkit python gobjectIntrospection vala_0_38 ]
|
||||||
|
++ lib.optional enableSystemd systemd
|
||||||
++ lib.optional enableBashCompletion bash-completion;
|
++ lib.optional enableBashCompletion bash-completion;
|
||||||
propagatedBuildInputs = [ sqlite nix boost ];
|
propagatedBuildInputs = [ sqlite nix boost ];
|
||||||
nativeBuildInputs = [ intltool pkgconfig autoreconfHook autoconf-archive gtk-doc ];
|
nativeBuildInputs = [ intltool pkgconfig autoreconfHook autoconf-archive gtk-doc ];
|
||||||
@ -28,7 +30,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--enable-systemd"
|
(if enableSystemd then "--enable-systemd" else "--disable-systemd")
|
||||||
"--disable-dummy"
|
"--disable-dummy"
|
||||||
"--disable-cron"
|
"--disable-cron"
|
||||||
"--disable-introspection"
|
"--disable-introspection"
|
||||||
@ -63,7 +65,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
homepage = http://www.packagekit.org/;
|
homepage = http://www.packagekit.org/;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.darwin;
|
||||||
maintainers = with maintainers; [ matthewbauer ];
|
maintainers = with maintainers; [ matthewbauer ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user