mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
matcha: init at 2018-09-14 (#46693)
This commit is contained in:
parent
1dcb946901
commit
54ab621fa7
32
pkgs/misc/themes/matcha/default.nix
Normal file
32
pkgs/misc/themes/matcha/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ stdenv, fetchFromGitHub, gdk_pixbuf, librsvg, gtk-engine-murrine }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "matcha-${version}";
|
||||
version = "2018-09-14";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vinceliuice";
|
||||
repo = "matcha";
|
||||
rev = "fe35259742b5ae007ab17d46d21acad5754477b9";
|
||||
sha256 = "1qwb8l1xfx9ca2y9gcsckxikijz1ij28dirvpqvhbbyn1m8i9hwd";
|
||||
};
|
||||
|
||||
buildInputs = [ gdk_pixbuf librsvg ];
|
||||
|
||||
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
||||
|
||||
installPhase = ''
|
||||
patchShebangs .
|
||||
substituteInPlace Install --replace '$HOME/.themes' "$out/share/themes"
|
||||
./Install
|
||||
install -D -t $out/share/gtksourceview-3.0/styles src/extra/gedit/matcha.xml
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A stylish Design theme for GTK based desktop environments";
|
||||
homepage = https://vinceliuice.github.io/theme-matcha;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.romildo ];
|
||||
};
|
||||
}
|
|
@ -21682,6 +21682,8 @@ with pkgs;
|
|||
|
||||
martyr = callPackage ../development/libraries/martyr { };
|
||||
|
||||
matcha = callPackage ../misc/themes/matcha { };
|
||||
|
||||
# previously known as flat-plat
|
||||
materia-theme = callPackage ../misc/themes/materia-theme { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue