la-capitaine-icon-theme: init at 0.6.2

This commit is contained in:
José Romildo 2021-11-15 13:14:10 -03:00
parent a048cf8065
commit 6d4e3069fc
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,52 @@
{ lib
, stdenv
, fetchFromGitHub
, breeze-icons
, elementary-icon-theme
, gnome-icon-theme
, hicolor-icon-theme
}:
stdenv.mkDerivation rec {
pname = "la-capitaine-icon-theme";
version = "0.6.2";
src = fetchFromGitHub {
owner = "keeferrourke";
repo = pname;
rev = "v${version}";
sha256 = "0id2dddx6rl71472l47vafx968wnklmq6b980br68w82kcvqczzs";
};
propagatedBuildInputs = [
breeze-icons
elementary-icon-theme
gnome-icon-theme
hicolor-icon-theme
];
dontDropIconThemeCache = true;
postPatch = ''
patchShebangs configure
substituteInPlace configure \
--replace 'DISTRO=$(format "$(lsb_release -si 2>/dev/null)")' 'DISTRO=nixos'
'';
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons/$pname
cp -a * $out/share/icons/$pname
rm $out/share/icons/$pname/{configure,COPYING,LICENSE,*.md}
runHook postInstall
'';
meta = with lib; {
description = "Icon theme inspired by macOS and Google's Material Design";
homepage = "https://github.com/keeferrourke/la-capitaine-icon-theme";
license = with licenses; [ gpl3Plus mit ];
platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
};
}

View File

@ -23179,6 +23179,11 @@ with pkgs;
kreative-square-fonts = callPackage ../data/fonts/kreative-square-fonts { };
la-capitaine-icon-theme = callPackage ../data/icons/la-capitaine-icon-theme {
inherit (plasma5Packages) breeze-icons;
inherit (pantheon) elementary-icon-theme;
};
layan-gtk-theme = callPackage ../data/themes/layan-gtk-theme { };
lato = callPackage ../data/fonts/lato {};