Merge pull request #145722 from sikmir/sfeed

sfeed: fix cross-compilation
This commit is contained in:
Jörg Thalheim 2021-11-13 09:04:43 +00:00 committed by GitHub
commit be3a6161cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,10 +10,9 @@ stdenv.mkDerivation rec {
sha256 = "sha256-pLKWq4KIiT6X37EUIOw5SBb1KWopnFcDO+iE++Uie5s=";
};
installPhase = ''
mkdir $out
make install PREFIX=$out
'';
makeFlags = [ "RANLIB:=$(RANLIB)" ];
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
homepage = "https://codemadness.org/sfeed-simple-feed-parser.html";