marwaita-ubuntu: init at 1.5
This commit is contained in:
parent
09ccd168f0
commit
722a480c88
46
pkgs/data/themes/marwaita-ubuntu/default.nix
Normal file
46
pkgs/data/themes/marwaita-ubuntu/default.nix
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, gdk-pixbuf
|
||||||
|
, gtk-engine-murrine
|
||||||
|
, gtk_engines
|
||||||
|
, librsvg
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "marwaita-ubuntu";
|
||||||
|
version = "1.5";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "darkomarko42";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0mld78s6gl5kfsdaqa7xs5mvfng9600pd2d9sp2b2q5axx7wjay5";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gdk-pixbuf
|
||||||
|
gtk_engines
|
||||||
|
librsvg
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedUserEnvPkgs = [
|
||||||
|
gtk-engine-murrine
|
||||||
|
];
|
||||||
|
|
||||||
|
dontBuild = true;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
mkdir -p $out/share/themes
|
||||||
|
cp -a Marwaita* $out/share/themes
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Ubuntu Style of Marwaita GTK theme";
|
||||||
|
homepage = "https://www.pling.com/p/1352833/";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = [ maintainers.romildo ];
|
||||||
|
};
|
||||||
|
}
|
@ -19212,6 +19212,8 @@ in
|
|||||||
|
|
||||||
marwaita-pop_os = callPackage ../data/themes/marwaita-pop_os { };
|
marwaita-pop_os = callPackage ../data/themes/marwaita-pop_os { };
|
||||||
|
|
||||||
|
marwaita-ubuntu = callPackage ../data/themes/marwaita-ubuntu { };
|
||||||
|
|
||||||
matcha-gtk-theme = callPackage ../data/themes/matcha { };
|
matcha-gtk-theme = callPackage ../data/themes/matcha { };
|
||||||
|
|
||||||
materia-theme = callPackage ../data/themes/materia-theme { };
|
materia-theme = callPackage ../data/themes/materia-theme { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user