Merge pull request #165726 from bobby285271/dfeet

authored by Artturi and committed by GitHub df64c2c7 214e2d6b

+12
+12
pkgs/development/tools/misc/d-feet/default.nix
··· 1 1 { lib 2 2 , pkg-config 3 3 , fetchurl 4 + , fetchpatch 4 5 , meson 5 6 , ninja 6 7 , glib ··· 24 25 url = "mirror://gnome/sources/d-feet/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 25 26 sha256 = "hzPOS5qaVOwYWx2Fv02p2dEQUogqiAdg/2D5d5stHMs="; 26 27 }; 28 + 29 + patches = [ 30 + # Fix build with meson 0.61 31 + # data/meson.build:15:0: ERROR: Function does not take positional arguments. 32 + # data/meson.build:27:0: ERROR: Function does not take positional arguments. 33 + # Patch taken from https://gitlab.gnome.org/GNOME/d-feet/-/merge_requests/32 34 + (fetchpatch { 35 + url = "https://gitlab.gnome.org/GNOME/d-feet/-/commit/05465d486afdba116dbc22fc22c1e6573aea4f22.patch"; 36 + sha256 = "sFI3nd0YE/deGws/YcTpzC/em9QNgicyb4j7cTfOdhY="; 37 + }) 38 + ]; 27 39 28 40 nativeBuildInputs = [ 29 41 gettext