cinnamon.mint-y-icons: init at unstable-2020-03-21

This commit is contained in:
Maciej Krüger 2020-03-22 10:27:27 +01:00
parent ae8815ebe8
commit a9708e0a22
No known key found for this signature in database
GPG key ID: 0D948CE19CF49C5F
2 changed files with 47 additions and 0 deletions

View file

@ -9,6 +9,7 @@ lib.makeScope pkgs.newScope (self: with self; {
cjs = callPackage ./cjs { };
nemo = callPackage ./nemo { };
mint-themes = callPackage ./mint-themes { };
mint-y-icons = callPackage ./mint-y-icons { };
muffin = callPackage ./muffin { };
xapps = callPackage ./xapps { };
})

View file

@ -0,0 +1,46 @@
{ fetchFromGitHub
, stdenv
, gnome3
, hicolor-icon-theme
, gtk3
}:
stdenv.mkDerivation rec {
pname = "mint-y-icons";
version = "unstable-2020-03-21";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = "f169a617bc344cb0b480b2b72f54cdd06af05255";
sha256 = "1c2a79ylk363i982czwwqcwc7cw6dyzlqphcypqm6nll7xlafq8s";
};
propagatedUserEnvPkgs = [
gnome3.adwaita-icon-theme
hicolor-icon-theme
];
nativeBuildInputs = [
gtk3
];
postFixup = ''
gtk-update-icon-cache $out/share/icons/*
'';
dontDropIconThemeCache = true;
installPhase = ''
mkdir -p $out
mv usr/share $out
'';
meta = with stdenv.lib; {
homepage = "https://github.com/linuxmint/mint-y-icons";
description = "The Mint-Y icon theme";
license = licenses.gpl3; # from debian/copyright
platforms = platforms.linux;
maintainers = [ maintainers.mkg20001 ];
};
}