mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
kde-gruvbox: init at unstable-2015-08-09
This commit is contained in:
parent
ce38fecabe
commit
8e3e5e9b7b
32
pkgs/data/themes/kde-gruvbox/default.nix
Normal file
32
pkgs/data/themes/kde-gruvbox/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv, lib, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "kde-gruvbox";
|
||||
version = "unstable-2015-08-09";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "printesoi";
|
||||
repo = pname;
|
||||
rev = "2dd95283076d7194345a460edb3630cfd020759c";
|
||||
sha256 = "sha256-ppAeEfwoHZg7XEj3zGc+uq4Z6hUgJNM2EjuDsc8pFQo=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/share/{plasma/desktoptheme,yakuake/kns_skins}
|
||||
cp -R color-schemes konsole $out/share
|
||||
cp -R plasma5/gruvbox $out/share/plasma/desktoptheme
|
||||
cp -R yakuake/breeze-gruvbox-dark $out/share/yakuake/kns_skins
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A suite of themes for KDE applications that match the retro gruvbox colorscheme";
|
||||
homepage = "https://github.com/printesoi/kde-gruvbox";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.ymarkus ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -25477,6 +25477,8 @@ with pkgs;
|
||||
|
||||
kaidan = libsForQt5.callPackage ../applications/networking/instant-messengers/kaidan { };
|
||||
|
||||
kde-gruvbox = callPackage ../data/themes/kde-gruvbox { };
|
||||
|
||||
kdeltachat = libsForQt5.callPackage ../applications/networking/instant-messengers/kdeltachat { };
|
||||
|
||||
kdevelop-pg-qt = libsForQt5.callPackage ../applications/editors/kdevelop5/kdevelop-pg-qt.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user