papirus-folders: init at 1.12.0
This commit is contained in:
parent
eced91d2f8
commit
2126944e09
2 changed files with 29 additions and 0 deletions
27
pkgs/data/misc/papirus-folders/default.nix
Normal file
27
pkgs/data/misc/papirus-folders/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ lib, stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "papirus-folders";
|
||||||
|
version = "1.12.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "PapirusDevelopmentTeam";
|
||||||
|
repo = "papirus-folders";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-ZZMEZCWO+qW76eqa+TgxWGVz69VkSCPcttLoCrH7ppY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A tool to change papirus icon theme color";
|
||||||
|
longDescription = ''
|
||||||
|
papirus-folders is a bash script that allows changing the color of
|
||||||
|
folders in Papirus icon theme and its forks (which based on version 20171007 and newer).
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/PapirusDevelopmentTeam/papirus-folders";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.aacebedo ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -25076,6 +25076,8 @@ with pkgs;
|
||||||
inherit (plasma5Packages) breeze-icons;
|
inherit (plasma5Packages) breeze-icons;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
papirus-folders = callPackage ../data/misc/papirus-folders { };
|
||||||
|
|
||||||
plasma-overdose-kde-theme = callPackage ../data/themes/plasma-overdose-kde-theme { };
|
plasma-overdose-kde-theme = callPackage ../data/themes/plasma-overdose-kde-theme { };
|
||||||
|
|
||||||
papis = with python3Packages; toPythonApplication papis;
|
papis = with python3Packages; toPythonApplication papis;
|
||||||
|
|
Loading…
Reference in a new issue