ca5ab3a501
GitOrigin-RevId: 4a01ca36d6bfc133bc617e661916a81327c9bbc8
27 lines
829 B
Nix
27 lines
829 B
Nix
{ 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 ];
|
|
};
|
|
}
|