Merge pull request #267476 from franciscod/patch-1

tweak: extend platforms (linux -> unix)
This commit is contained in:
Nick Cao
2023-11-16 08:38:24 -05:00
committed by GitHub
+2 -1
View File
@@ -11,11 +11,12 @@ stdenv.mkDerivation rec {
buildInputs = [ ncurses ];
preBuild = "substituteInPlace Makefile --replace '$(DESTDIR)/usr/local' $out";
makeFlags = [ "CC:=$(CC)" "LINK:=$(CC)" ];
meta = with lib; {
description = "An efficient hex editor";
homepage = "http://www.chiark.greenend.org.uk/~sgtatham/tweak";
license = licenses.mit;
platforms = platforms.linux;
platforms = platforms.unix;
};
}