nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

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

gtksourceview: remove with lib over entire file

+3 -5
+3 -5
pkgs/desktops/gnome-2/desktop/gtksourceview/default.nix
··· 4 4 , testers 5 5 }: 6 6 7 - with lib; 8 - 9 7 stdenv.mkDerivation (finalAttrs: { 10 8 pname = "gtksourceview"; 11 9 version = "2.10.5"; ··· 15 17 sha256 = "c585773743b1df8a04b1be7f7d90eecdf22681490d6810be54c81a7ae152191e"; 16 18 }; 17 19 18 - patches = optionals stdenv.isDarwin [ 20 + patches = lib.optionals stdenv.isDarwin [ 19 21 (fetchpatch { 20 22 name = "change-igemacintegration-to-gtkosxapplication.patch"; 21 23 url = "https://gitlab.gnome.org/GNOME/gtksourceview/commit/e88357c5f210a8796104505c090fb6a04c213902.patch"; ··· 33 35 atk cairo glib gtk2 34 36 pango libxml2Python perl 35 37 gettext 36 - ] ++ optionals stdenv.isDarwin [ 38 + ] ++ lib.optionals stdenv.isDarwin [ 37 39 gnome-common gtk-mac-integration-gtk2 38 40 ]; 39 41 40 - preConfigure = optionalString stdenv.isDarwin '' 42 + preConfigure = lib.optionalString stdenv.isDarwin '' 41 43 intltoolize --force 42 44 ''; 43 45