diff options
Diffstat (limited to 'pkgs/tools/text/hyx/default.nix')
-rw-r--r-- | pkgs/tools/text/hyx/default.nix | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/tools/text/hyx/default.nix b/pkgs/tools/text/hyx/default.nix deleted file mode 100644 index 3cbcac20966a..000000000000 --- a/pkgs/tools/text/hyx/default.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ lib, stdenv, fetchurl, memstreamHook }: - -stdenv.mkDerivation rec { - pname = "hyx"; - version = "2024.02.29"; - - src = fetchurl { - url = "https://yx7.cc/code/hyx/hyx-${lib.replaceStrings [ "-" ] [ "." ] version}.tar.xz"; - sha256 = "sha256-dufx3zsabeet7Rp0d60MIuNqisIQd6UgE7WDZYNHl3E="; - }; - - postPatch = lib.optionalString stdenv.isDarwin '' - substituteInPlace Makefile \ - --replace "-Wl,-z,relro,-z,now -fpic -pie" "" - ''; - - buildInputs = lib.optional (stdenv.system == "x86_64-darwin") memstreamHook; - - installPhase = '' - install -vD hyx $out/bin/hyx - ''; - - meta = with lib; { - description = "minimalistic but powerful Linux console hex editor"; - mainProgram = "hyx"; - homepage = "https://yx7.cc/code/"; - license = licenses.mit; - maintainers = with maintainers; [ fpletz ]; - platforms = with platforms; linux ++ darwin; - }; -} |