forked from mirrors/nixpkgs
pitch-black: init at unstable-2019-07-23 (#156622)
Co-authored-by: Ivv <41924494+IvarWithoutBones@users.noreply.github.com>
This commit is contained in:
parent
b480ae19aa
commit
58a1055438
30
pkgs/data/themes/pitch-black/default.nix
Normal file
30
pkgs/data/themes/pitch-black/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib, stdenvNoCC, fetchFromGitHub }:
|
||||
|
||||
stdenvNoCC.mkDerivation rec{
|
||||
pname = "pitch-black";
|
||||
version = "unstable-2019-07-23";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
repo = pname;
|
||||
owner = "freefreeno";
|
||||
rev = "d8039341419aef1157c030bf3d9237bd926e0b95";
|
||||
hash = "sha256-Rn3ZMBD6srIkYFNN3HT5JFP46Akodmeqz5tbV2/2ZDA=";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
rm LICENSE README.md
|
||||
mkdir -p $out/share
|
||||
mv GTK $out/share/themes
|
||||
mv * $out/share
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A dark plasma theme built with usability in mind";
|
||||
homepage = "https://github.com/freefreeno/Pitch-Black";
|
||||
license = licenses.gpl3Only;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.pasqui23 ];
|
||||
};
|
||||
}
|
|
@ -23935,6 +23935,8 @@ with pkgs;
|
|||
|
||||
penna = callPackage ../data/fonts/penna { };
|
||||
|
||||
pitch-black = callPackage ../data/themes/pitch-black {};
|
||||
|
||||
plano-theme = callPackage ../data/themes/plano { };
|
||||
|
||||
plata-theme = callPackage ../data/themes/plata {
|
||||
|
|
Loading…
Reference in a new issue