nixpkgs/pkgs/shells/rc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, byacc
, ncurses, readline
, historySupport ? false, readlineSupport ? true }:
2016-08-24 00:04:50 +00:00
stdenv.mkDerivation rec {
pname = "rc";
version = "unstable-2021-08-03";
2016-08-24 00:04:50 +00:00
src = fetchFromGitHub {
owner = "rakitzis";
repo = "rc";
rev = "8ca9ab1305c3e30cd064290081d6e5a1fa841d26";
sha256 = "0744ars6y9zzsjr9xazms91qy6bi7msg2gg87526waziahfh4s4z";
2016-08-24 00:04:50 +00:00
};
2022-05-06 18:39:28 +00:00
strictDeps = true;
nativeBuildInputs = [ autoreconfHook byacc ];
# acinclude.m4 wants headers for tgetent().
buildInputs = [ ncurses ]
++ lib.optionals readlineSupport [ readline ];
2016-08-24 00:04:50 +00:00
configureFlags = [
"--enable-def-interp=${stdenv.shell}" #183
2021-01-15 06:28:56 +00:00
] ++ lib.optionals historySupport [ "--with-history" ]
++ lib.optionals readlineSupport [ "--with-edit=readline" ];
2016-08-24 00:04:50 +00:00
#reproducible-build
postPatch = ''
2016-08-24 00:04:50 +00:00
substituteInPlace configure.ac \
--replace "$(git describe || echo '(git description unavailable)')" "${builtins.substring 0 7 src.rev}"
2016-08-24 00:04:50 +00:00
'';
passthru.shellPath = "/bin/rc";
2016-08-24 00:04:50 +00:00
meta = with lib; {
2016-08-24 00:04:50 +00:00
description = "The Plan 9 shell";
longDescription = "Byron Rakitzis' UNIX reimplementation of Tom Duff's Plan 9 shell";
homepage = "https://web.archive.org/web/20180820053030/tobold.org/article/rc";
2016-08-24 00:04:50 +00:00
license = with licenses; zlib;
maintainers = with maintainers; [ ramkromberg ];
mainProgram = "rc";
2016-08-24 00:04:50 +00:00
platforms = with platforms; all;
};
}