forked from mirrors/nixpkgs
Merge pull request #68860 from romildo/upd.qogir-icon-theme
qogir-icon-theme: init at 2019-09-15
This commit is contained in:
commit
e589f08b3b
29
pkgs/data/icons/qogir-icon-theme/default.nix
Normal file
29
pkgs/data/icons/qogir-icon-theme/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchFromGitHub, gtk3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "qogir-icon-theme";
|
||||
version = "2019-09-15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vinceliuice";
|
||||
repo = pname;
|
||||
rev = "4e1b6c693615bc2c7c7a11df6f4b90f2e6fb67db";
|
||||
sha256 = "1vp1wp4fgmy5af8z8nb3m6wgmb6wbwlvx5smf9dxfcn254hdg8g0";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ gtk3 ];
|
||||
|
||||
installPhase = ''
|
||||
patchShebangs install.sh
|
||||
mkdir -p $out/share/icons
|
||||
name= ./install.sh -d $out/share/icons
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A colorful design icon theme for linux desktops";
|
||||
homepage = https://github.com/vinceliuice/Qogir-icon-theme;
|
||||
license = with licenses; [ gpl3 ];
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ romildo ];
|
||||
};
|
||||
}
|
|
@ -16993,6 +16993,8 @@ in
|
|||
|
||||
publicsuffix-list = callPackage ../data/misc/publicsuffix-list { };
|
||||
|
||||
qogir-icon-theme = callPackage ../data/icons/qogir-icon-theme { };
|
||||
|
||||
qogir-theme = callPackage ../data/themes/qogir { };
|
||||
|
||||
redhat-official-fonts = callPackage ../data/fonts/redhat-official { };
|
||||
|
|
Loading…
Reference in a new issue