Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
34 lines
798 B
Nix
34 lines
798 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
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.hostPlatform.isDarwin ''
|
|
substituteInPlace Makefile \
|
|
--replace "-Wl,-z,relro,-z,now -fpic -pie" ""
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|