Merge pull request #14432 from Profpatsch/sent-patches

sent: optional `patches` argument
This commit is contained in:
joachifm 2016-04-04 13:23:14 +02:00
commit a6c94cc552

View File

@ -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; {