forked from mirrors/nixpkgs
Merge pull request #182628 from aacebedo/papirus-folders
papirus-folders: fix missing dependency
This commit is contained in:
commit
a14424e2fe
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchFromGitHub, getent }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "papirus-folders";
|
||||
|
@ -11,8 +11,16 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "sha256-ZZMEZCWO+qW76eqa+TgxWGVz69VkSCPcttLoCrH7ppY=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
getent
|
||||
];
|
||||
|
||||
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace ./papirus-folders --replace "getent" "${getent}/bin/getent"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A tool to change papirus icon theme color";
|
||||
longDescription = ''
|
||||
|
|
Loading…
Reference in a new issue