6 stdenv.mkDerivation rec {
10 src = fetchFromGitHub {
13 rev = "oed-${version}";
14 hash = "sha256-bbV89YhrmL7tOgKly5OfQDRz4QE0UzZrVsmoXiJ7ZZw=";
17 postPatch = lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) ''
18 substituteInPlace configure --replace "./conftest" "echo"
22 install -m755 -Dt $out/bin ed
23 install -m644 -Dt $out/share/man/man1 ed.1
27 description = "Portable ed editor from OpenBSD";
28 homepage = "https://github.com/ibara/oed";
29 license = with licenses; [ bsd2 ];
31 platforms = platforms.unix;