summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2016-08-26 18:34:32 +0200
committerGitHub <noreply@github.com>2016-08-26 18:34:32 +0200
commitc30792ed43ceb9f82448bfdfbbfa65c8b5910388 (patch)
tree8c16097057c1c7f96a760cd1b058ee3648c01815 /pkgs/shells
parentfee9b3410e99b5db76eab3f7af379e8882cc6a90 (diff)
parent4c72c81e085774b348b9560ddcaeca6a5cc66bc1 (diff)
downloadnixpkgs-c30792ed43ceb9f82448bfdfbbfa65c8b5910388.tar
nixpkgs-c30792ed43ceb9f82448bfdfbbfa65c8b5910388.tar.gz
nixpkgs-c30792ed43ceb9f82448bfdfbbfa65c8b5910388.tar.bz2
nixpkgs-c30792ed43ceb9f82448bfdfbbfa65c8b5910388.tar.lz
nixpkgs-c30792ed43ceb9f82448bfdfbbfa65c8b5910388.tar.xz
nixpkgs-c30792ed43ceb9f82448bfdfbbfa65c8b5910388.tar.zst
nixpkgs-c30792ed43ceb9f82448bfdfbbfa65c8b5910388.zip
Merge pull request #17947 from RamKromberg/init/rc
rc: init at 1.7.4
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/rc/default.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/pkgs/shells/rc/default.nix b/pkgs/shells/rc/default.nix
new file mode 100644
index 00000000000..298c4a1c32f
--- /dev/null
+++ b/pkgs/shells/rc/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, fetchurl, autoreconfHook
+, ncurses #acinclude.m4 wants headers for tgetent().
+, historySupport ? false
+, readline ? null
+}:
+
+stdenv.mkDerivation rec {
+  name = "rc-${version}";
+  version = "1.7.4";
+
+  src = fetchurl {
+    url = "http://static.tobold.org/rc/rc-${version}.tar.gz";
+    sha256 = "1n5zz6d6z4z6s3fwa0pscqqawy561k4xfnmi91i626hcvls67ljy";
+  };
+
+  nativeBuildInputs = [ autoreconfHook ];
+  buildInputs = [ ncurses ]
+    ++ stdenv.lib.optionals (readline != null) [ readline ];
+
+  configureFlags = [
+    "--enable-def-interp=${stdenv.shell}" #183
+    ] ++ stdenv.lib.optionals historySupport [ "--with-history" ]
+    ++ stdenv.lib.optionals (readline != null) [ "--with-edit=readline" ];
+
+  prePatch = ''
+    substituteInPlace configure.ac \
+      --replace "date -I" "echo 2015-05-13" #reproducible-build
+  '';
+
+  passthru = {
+    shellPath = "/bin/rc";
+  };
+
+  meta = with stdenv.lib; {
+    description = "The Plan 9 shell";
+    longDescription = "Byron Rakitzis' UNIX reimplementation of Tom Duff's Plan 9 shell.";
+    homepage = http://tobold.org/article/rc;
+    license = with licenses; zlib;
+    maintainers = with maintainers; [ ramkromberg ];
+    platforms = with platforms; all;
+  };
+}