codesnap: init at 0.8.2 (#364266)
[NixPkgs.git] / pkgs / by-name / pa / papirus-folders / package.nix
blob11c08f69406abcc36377ae6c9bdd87a86d37c4b7
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   getent,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "papirus-folders";
10   version = "1.13.1";
12   src = fetchFromGitHub {
13     owner = "PapirusDevelopmentTeam";
14     repo = "papirus-folders";
15     rev = "v${version}";
16     sha256 = "sha256-BY1hnAGz31Deffy/EGKy/nuPKmpAA0u8FzPYgr1Plfs=";
17   };
19   buildInputs = [
20     getent
21   ];
23   makeFlags = [ "PREFIX=${placeholder "out"}" ];
25   patchPhase = ''
26     substituteInPlace ./papirus-folders --replace "getent" "${getent}/bin/getent"
27   '';
29   meta = with lib; {
30     description = "Tool to change papirus icon theme color";
31     mainProgram = "papirus-folders";
32     longDescription = ''
33       papirus-folders is a bash script that allows changing the color of
34       folders in Papirus icon theme and its forks (which based on version 20171007 and newer).
35     '';
36     homepage = "https://github.com/PapirusDevelopmentTeam/papirus-folders";
37     license = licenses.mit;
38     platforms = platforms.linux;
39     maintainers = [ maintainers.aacebedo ];
40   };