nixpkgs/pkgs/data/icons/qogir-icon-theme/default.nix

34 lines
824 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, gtk3, hicolor-icon-theme }:
2019-09-15 19:36:32 +00:00
stdenv.mkDerivation rec {
pname = "qogir-icon-theme";
version = "2020-11-22";
2019-09-15 19:36:32 +00:00
src = fetchFromGitHub {
owner = "vinceliuice";
repo = pname;
rev = version;
sha256 = "04rkpsiz8jg9i55mslsh7a6wgyp30ja3xss7qacqimdab236300d";
2019-09-15 19:36:32 +00:00
};
nativeBuildInputs = [ gtk3 ];
propagatedBuildInputs = [ hicolor-icon-theme ];
dontDropIconThemeCache = true;
2019-09-15 19:36:32 +00:00
installPhase = ''
patchShebangs install.sh
mkdir -p $out/share/icons
name= ./install.sh -d $out/share/icons
'';
meta = with lib; {
description = "Flat colorful design icon theme";
homepage = "https://github.com/vinceliuice/Qogir-icon-theme";
2019-09-15 19:36:32 +00:00
license = with licenses; [ gpl3 ];
platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
};
}