1 { lib, stdenv, fetchFromGitHub, getent }:
3 stdenv.mkDerivation rec {
4 pname = "papirus-folders";
7 src = fetchFromGitHub {
8 owner = "PapirusDevelopmentTeam";
9 repo = "papirus-folders";
11 sha256 = "sha256-BY1hnAGz31Deffy/EGKy/nuPKmpAA0u8FzPYgr1Plfs=";
18 makeFlags = [ "PREFIX=${placeholder "out"}" ];
21 substituteInPlace ./papirus-folders --replace "getent" "${getent}/bin/getent"
25 description = "Tool to change papirus icon theme color";
26 mainProgram = "papirus-folders";
28 papirus-folders is a bash script that allows changing the color of
29 folders in Papirus icon theme and its forks (which based on version 20171007 and newer).
31 homepage = "https://github.com/PapirusDevelopmentTeam/papirus-folders";
32 license = licenses.mit;
33 platforms = platforms.linux;
34 maintainers = [ maintainers.aacebedo ];