mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
materia-theme: 20190912 -> 20200916
This commit is contained in:
parent
066412597a
commit
e388dd8542
|
@ -1,29 +1,29 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, sassc
|
||||||
, gnome3
|
, gnome3
|
||||||
, glib
|
|
||||||
, libxml2
|
|
||||||
, gtk-engine-murrine
|
, gtk-engine-murrine
|
||||||
, gdk-pixbuf
|
, gdk-pixbuf
|
||||||
, librsvg
|
, librsvg
|
||||||
, bc
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "materia-theme";
|
pname = "materia-theme";
|
||||||
version = "20190912";
|
version = "20200916";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nana-4";
|
owner = "nana-4";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "07vbql1y9jfd0m34lw1674cfr6217dzg3irk0450kny8sjrrj6dx";
|
sha256 = "0qaxxafsn5zd2ysgr0jyv5j73360mfdmxyd55askswlsfphssn74";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
glib
|
meson
|
||||||
libxml2
|
ninja
|
||||||
bc
|
sassc
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -38,19 +38,18 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
|
|
||||||
installPhase = ''
|
mesonFlags = [
|
||||||
patchShebangs install.sh
|
"-Dgnome_shell_version=${stdenv.lib.versions.majorMinor gnome3.gnome-shell.version}"
|
||||||
sed -i install.sh \
|
];
|
||||||
-e "s|if .*which gnome-shell.*;|if true;|" \
|
|
||||||
-e "s|CURRENT_GS_VERSION=.*$|CURRENT_GS_VERSION=${stdenv.lib.versions.majorMinor gnome3.gnome-shell.version}|"
|
postInstall = ''
|
||||||
./install.sh --dest $out/share/themes
|
|
||||||
rm $out/share/themes/*/COPYING
|
rm $out/share/themes/*/COPYING
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Material Design theme for GNOME/GTK based desktop environments";
|
description = "Material Design theme for GNOME/GTK based desktop environments";
|
||||||
homepage = "https://github.com/nana-4/materia-theme";
|
homepage = "https://github.com/nana-4/materia-theme";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2Only;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = [ maintainers.mounium ];
|
maintainers = [ maintainers.mounium ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue