mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, glib
|
|
, lib
|
|
, writeScriptBin
|
|
}:
|
|
let
|
|
# make install will use dconf to find desktop background file uri.
|
|
# consider adding an args to allow specify pictures manually.
|
|
# https://github.com/daniruiz/flat-remix-gnome/blob/20240922/Makefile#L38
|
|
fake-dconf = writeScriptBin "dconf" "echo -n";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "flat-remix-gnome";
|
|
version = "20240922";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "daniruiz";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-/Md1CbEDe+N8Nu0WPrIUkEudqMvEARmHD9NtgE7sPLQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ glib fake-dconf ];
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
# make install will back up this file, it will fail if the file doesn't exist.
|
|
# https://github.com/daniruiz/flat-remix-gnome/blob/20240922/Makefile#L56
|
|
preInstall = ''
|
|
mkdir -p $out/share/gnome-shell/
|
|
touch $out/share/gnome-shell/gnome-shell-theme.gresource
|
|
'';
|
|
|
|
postInstall = ''
|
|
rm $out/share/gnome-shell/gnome-shell-theme.gresource.old
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "GNOME Shell theme inspired by material design";
|
|
homepage = "https://drasite.com/flat-remix-gnome";
|
|
license = licenses.cc-by-sa-40;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.vanilla ];
|
|
};
|
|
}
|