mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
pop-icon-theme: init at 2020-03-04
This commit is contained in:
parent
14927d8503
commit
92abc153f2
45
pkgs/data/icons/pop-icon-theme/default.nix
Normal file
45
pkgs/data/icons/pop-icon-theme/default.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, meson
|
||||
, ninja
|
||||
, gtk3
|
||||
, breeze-icons
|
||||
, gnome3
|
||||
, pantheon
|
||||
, hicolor-icon-theme
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pop-icon-theme";
|
||||
version = "2020-03-04";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pop-os";
|
||||
repo = "icon-theme";
|
||||
rev = "11f18cb48455b47b6535018f1968777100471be1";
|
||||
sha256 = "1s4pjwv2ynw400gnzgzczlxzw3gxh5s8cxxbi9zpxq4wzjg6jqyv";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
gtk3
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
breeze-icons
|
||||
gnome3.adwaita-icon-theme
|
||||
pantheon.elementary-icon-theme
|
||||
hicolor-icon-theme
|
||||
];
|
||||
|
||||
dontDropIconThemeCache = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Icon theme for Pop!_OS with a semi-flat design and raised 3D motifs";
|
||||
homepage = "https://github.com/pop-os/icon-theme";
|
||||
license = with licenses; [ cc-by-sa-40 gpl3 ];
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ romildo ];
|
||||
};
|
||||
}
|
@ -18131,6 +18131,8 @@ in
|
||||
|
||||
pop-gtk-theme = callPackage ../data/themes/pop-gtk { };
|
||||
|
||||
pop-icon-theme = callPackage ../data/icons/pop-icon-theme { };
|
||||
|
||||
posix_man_pages = callPackage ../data/documentation/man-pages-posix { };
|
||||
|
||||
powerline-fonts = callPackage ../data/fonts/powerline-fonts { };
|
||||
|
Loading…
Reference in New Issue
Block a user