Merge pull request #14432 from Profpatsch/sent-patches
sent: optional `patches` argument
This commit is contained in:
commit
a6c94cc552
@ -1,4 +1,5 @@
|
||||
{ stdenv, fetchurl, libpng, libX11, libXft }:
|
||||
{ stdenv, fetchurl, libpng, libX11, libXft
|
||||
, patches ? [] }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sent-0.2";
|
||||
@ -10,6 +11,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ libpng libX11 libXft ];
|
||||
|
||||
inherit patches;
|
||||
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user