biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / editors / oed / default.nix
blob189dfe345c0dd5db63d474f3001bec5be5865566
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 }:
6 stdenv.mkDerivation rec {
7   pname = "oed";
8   version = "7.4";
10   src = fetchFromGitHub {
11     owner = "ibara";
12     repo = "oed";
13     rev = "oed-${version}";
14     hash = "sha256-bbV89YhrmL7tOgKly5OfQDRz4QE0UzZrVsmoXiJ7ZZw=";
15   };
17   postPatch = lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) ''
18     substituteInPlace configure --replace "./conftest" "echo"
19   '';
21   installPhase = ''
22     install -m755 -Dt $out/bin ed
23     install -m644 -Dt $out/share/man/man1 ed.1
24   '';
26   meta = with lib; {
27     description = "Portable ed editor from OpenBSD";
28     homepage = "https://github.com/ibara/oed";
29     license = with licenses; [ bsd2 ];
30     mainProgram = "ed";
31     platforms = platforms.unix;
32   };