mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #85110 from marsam/fix-rsstail-darwin
rsstail: enable on darwin
This commit is contained in:
commit
ff40e2834a
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue