Files
nixpkgs/pkgs/by-name/ed/edit/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

56 lines
869 B
Nix

{
lib,
stdenv,
fetchgit,
cwebbin,
libX11,
libXft,
ncurses,
pkg-config,
unzip,
}:
stdenv.mkDerivation {
pname = "edit";
version = "unstable-2021-04-05";
src = fetchgit {
url = "git://c9x.me/ed.git";
rev = "bc24e3d4f716b0afacef559f952c40f0be5a1c58";
hash = "sha256-DzQ+3B96+UzQqL3lhn0DfYmZy2LOANtibj1e1iVR+Jo=";
};
nativeBuildInputs = [
cwebbin
pkg-config
unzip
];
buildInputs = [
libX11
libXft
ncurses
];
preBuild = ''
ctangle vicmd.w
'';
installPhase = ''
runHook preInstall
install -Dm755 obj/edit -t $out/bin
runHook postInstall
'';
meta = {
description = "Relaxing mix of Vi and ACME";
homepage = "https://c9x.me/edit";
license = lib.licenses.publicDomain;
maintainers = [ ];
platforms = lib.platforms.unix;
mainProgram = "edit";
};
}