papirus-maia-icon-theme: init at 2019-07-26
This commit is contained in:
parent
e589f08b3b
commit
6d370a57b4
36
pkgs/data/icons/papirus-maia-icon-theme/default.nix
Normal file
36
pkgs/data/icons/papirus-maia-icon-theme/default.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, gtk3 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "papirus-maia-icon-theme";
|
||||||
|
version = "2019-07-26";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Ste74";
|
||||||
|
repo = pname;
|
||||||
|
rev = "90d47c817cc0edeed8b5a90335e669948ff4a116";
|
||||||
|
sha256 = "0d6lvdg5nw5wfaq8lxszcws174vg12ywkrqzn6czimhmhp48jf5p";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
gtk3
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace CMakeLists.txt --replace /usr "$out"
|
||||||
|
'';
|
||||||
|
|
||||||
|
postFixup = ''
|
||||||
|
for theme in $out/share/icons/*; do
|
||||||
|
gtk-update-icon-cache $theme
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Manjaro variation of Papirus icon theme";
|
||||||
|
homepage = https://github.com/Ste74/papirus-maia-icon-theme;
|
||||||
|
license = licenses.lgpl3;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ romildo ];
|
||||||
|
};
|
||||||
|
}
|
@ -16949,6 +16949,8 @@ in
|
|||||||
|
|
||||||
papirus-icon-theme = callPackage ../data/icons/papirus-icon-theme { };
|
papirus-icon-theme = callPackage ../data/icons/papirus-icon-theme { };
|
||||||
|
|
||||||
|
papirus-maia-icon-theme = callPackage ../data/icons/papirus-maia-icon-theme { };
|
||||||
|
|
||||||
papis = with python3Packages; toPythonApplication papis;
|
papis = with python3Packages; toPythonApplication papis;
|
||||||
|
|
||||||
paps = callPackage ../tools/misc/paps { };
|
paps = callPackage ../tools/misc/paps { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user