nixpkgs/pkgs/shells/tcsh/default.nix

11 lines
241 B
Nix
Raw Normal View History

{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "tcsh-6.14.00";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/tcsh-6.14.00.tar.gz;
md5 = "353d1bb7d2741bf8de602c7b6f0efd79";
};
buildInputs = [ncurses];
}