evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / pa / papirus-folders / package.nix
blob7abcd038bac0c5637e06b3372ad1b4066d316d7b
1 { lib, stdenv, fetchFromGitHub, getent }:
3 stdenv.mkDerivation rec {
4   pname = "papirus-folders";
5   version = "1.13.1";
7   src = fetchFromGitHub {
8     owner = "PapirusDevelopmentTeam";
9     repo = "papirus-folders";
10     rev = "v${version}";
11     sha256 = "sha256-BY1hnAGz31Deffy/EGKy/nuPKmpAA0u8FzPYgr1Plfs=";
12   };
14   buildInputs = [
15     getent
16   ];
18   makeFlags = [ "PREFIX=${placeholder "out"}" ];
20   patchPhase = ''
21     substituteInPlace ./papirus-folders --replace "getent" "${getent}/bin/getent"
22   '';
24   meta = with lib; {
25     description = "Tool to change papirus icon theme color";
26     mainProgram = "papirus-folders";
27     longDescription = ''
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).
30     '';
31     homepage = "https://github.com/PapirusDevelopmentTeam/papirus-folders";
32     license = licenses.mit;
33     platforms = platforms.linux;
34     maintainers = [ maintainers.aacebedo ];
35   };