lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

polkit_gnome: cleanup, add platforms

+8 -4
+8 -4
pkgs/tools/security/polkit-gnome/default.nix
··· 1 1 { stdenv, fetchurl, polkit, gtk3, pkgconfig, intltool }: 2 2 3 - stdenv.mkDerivation { 4 - name = "polkit-gnome-0.105"; 3 + let 4 + version = "0.105"; 5 + 6 + in stdenv.mkDerivation rec { 7 + name = "polkit-gnome-${version}"; 5 8 6 9 src = fetchurl { 7 - url = mirror://gnome/sources/polkit-gnome/0.105/polkit-gnome-0.105.tar.xz; 10 + url = "mirror://gnome/sources/polkit-gnome/${version}/${name}.tar.xz"; 8 11 sha256 = "0sckmcbxyj6sbrnfc5p5lnw27ccghsid6v6wxq09mgxqcd4lk10p"; 9 12 }; 10 13 11 14 buildInputs = [ polkit gtk3 ]; 12 15 nativeBuildInputs = [ pkgconfig intltool ]; 13 16 14 - configureFlags = "--disable-introspection"; 17 + configureFlags = [ "--disable-introspection" ]; 15 18 16 19 # Desktop file from Debian 17 20 postInstall = '' ··· 24 27 description = "A dbus session bus service that is used to bring up authentication dialogs"; 25 28 license = stdenv.lib.licenses.gpl2; 26 29 maintainers = with stdenv.lib.maintainers; [ urkud phreedom ]; 30 + platforms = stdenv.lib.platforms.linux; 27 31 }; 28 32 }