rsstail: enable on darwin

gstqt5
Mario Rodas 2020-04-12 04:20:00 -05:00
parent b7aeeacdc3
commit 38717ac450
No known key found for this signature in database
GPG Key ID: 325649BCA6D53027
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cppcheck, libmrss }: { stdenv, fetchFromGitHub, cppcheck, libmrss, libiconv }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "rsstail"; pname = "rsstail";
@ -11,7 +11,7 @@ stdenv.mkDerivation {
owner = "flok99"; owner = "flok99";
}; };
buildInputs = [ libmrss ]; buildInputs = [ libmrss ] ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv ];
checkInputs = [ cppcheck ]; checkInputs = [ cppcheck ];
postPatch = '' postPatch = ''
@ -31,6 +31,6 @@ stdenv.mkDerivation {
''; '';
homepage = "http://www.vanheusden.com/rsstail/"; homepage = "http://www.vanheusden.com/rsstail/";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.unix;
}; };
} }