tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
flat-remix-gnome: 20211028 -> 20211113
Vanilla
4 years ago
53d0d3e4
4d19b372
+11
-5
1 changed file
expand all
collapse all
unified
split
pkgs
data
themes
flat-remix-gnome
default.nix
+11
-5
pkgs/data/themes/flat-remix-gnome/default.nix
···
2
2
, fetchFromGitHub
3
3
, glib
4
4
, lib
5
5
+
, writeScriptBin
5
6
}:
6
6
-
7
7
+
let
8
8
+
# make install will use dconf to find desktop background file uri.
9
9
+
# consider adding an args to allow specify pictures manually.
10
10
+
# https://github.com/daniruiz/flat-remix-gnome/blob/20211113/Makefile#L38
11
11
+
fake-dconf = writeScriptBin "dconf" "echo -n";
12
12
+
in
7
13
stdenv.mkDerivation rec {
8
14
pname = "flat-remix-gnome";
9
9
-
version = "20211028";
15
15
+
version = "20211113";
10
16
11
17
src = fetchFromGitHub {
12
18
owner = "daniruiz";
13
19
repo = pname;
14
20
rev = version;
15
15
-
hash = "sha256-sHJj81MmU9s5sUq5gaIT3leezuG0aVvgTD70Kho9Z0c=";
21
21
+
hash = "sha256-A9aiaS4CXRpr4+Y8+tyvWYRbR9STFS9TuplGksPfqtU=";
16
22
};
17
23
18
18
-
nativeBuildInputs = [ glib ];
24
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
22
-
# https://github.com/daniruiz/flat-remix-gnome/blob/20211028/Makefile#L54
28
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
'';