flat-remix-gnome: 20211028 -> 20211113

Vanilla 53d0d3e4 4d19b372

+11 -5
+11 -5
pkgs/data/themes/flat-remix-gnome/default.nix
··· 2 2 , fetchFromGitHub 3 3 , glib 4 4 , lib 5 + , writeScriptBin 5 6 }: 6 - 7 + let 8 + # make install will use dconf to find desktop background file uri. 9 + # consider adding an args to allow specify pictures manually. 10 + # https://github.com/daniruiz/flat-remix-gnome/blob/20211113/Makefile#L38 11 + fake-dconf = writeScriptBin "dconf" "echo -n"; 12 + in 7 13 stdenv.mkDerivation rec { 8 14 pname = "flat-remix-gnome"; 9 - version = "20211028"; 15 + version = "20211113"; 10 16 11 17 src = fetchFromGitHub { 12 18 owner = "daniruiz"; 13 19 repo = pname; 14 20 rev = version; 15 - hash = "sha256-sHJj81MmU9s5sUq5gaIT3leezuG0aVvgTD70Kho9Z0c="; 21 + hash = "sha256-A9aiaS4CXRpr4+Y8+tyvWYRbR9STFS9TuplGksPfqtU="; 16 22 }; 17 23 18 - nativeBuildInputs = [ glib ]; 24 + nativeBuildInputs = [ glib fake-dconf ]; 19 25 makeFlags = [ "PREFIX=$(out)" ]; 20 26 preInstall = '' 21 27 # make install will back up this file, it will fail if the file doesn't exist. 22 - # https://github.com/daniruiz/flat-remix-gnome/blob/20211028/Makefile#L54 28 + # https://github.com/daniruiz/flat-remix-gnome/blob/20211113/Makefile#L56 23 29 mkdir -p $out/share/gnome-shell/ 24 30 touch $out/share/gnome-shell/gnome-shell-theme.gresource 25 31 '';