mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
Merge pull request #36142 from romildo/new.deepin-icon-theme
deepin-icon-theme: init at 15.12.52
This commit is contained in:
commit
de71a45119
39
pkgs/data/icons/deepin-icon-theme/default.nix
Normal file
39
pkgs/data/icons/deepin-icon-theme/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ stdenv, fetchFromGitHub, gtk3, papirus-icon-theme }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "deepin-icon-theme";
|
||||
version = "15.12.52";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "linuxdeepin";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "141in9jlflmckd8rg4605dfks84p1p6b1zdbhbiwrg11xbl66f3l";
|
||||
|
||||
# Get rid of case collision in file names, which is an issue in
|
||||
# darwin where file names are case insensitive.
|
||||
extraPostFetch = ''
|
||||
rm "$out"/Sea/apps/scalable/TeXmacs.svg
|
||||
rm "$out"/deepin/apps/48/TeXmacs.svg
|
||||
'';
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ gtk3 papirus-icon-theme ];
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
postFixup = ''
|
||||
for theme in $out/share/icons/*; do
|
||||
gtk-update-icon-cache $theme
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Deepin icon theme";
|
||||
homepage = https://github.com/linuxdeepin/deepin-icon-theme;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ romildo ];
|
||||
};
|
||||
}
|
|
@ -13960,6 +13960,8 @@ with pkgs;
|
|||
|
||||
crimson = callPackage ../data/fonts/crimson {};
|
||||
|
||||
deepin-icon-theme = callPackage ../data/icons/deepin-icon-theme { };
|
||||
|
||||
dejavu_fonts = lowPrio (callPackage ../data/fonts/dejavu-fonts {
|
||||
inherit (perlPackages) FontTTF;
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue