1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 06:31:02 +00:00
nixpkgs/pkgs/development/interpreters/ruby/default.nix

12 lines
257 B
Nix
Raw Normal View History

{stdenv, fetchurl, ncurses, readline}:
stdenv.mkDerivation {
name = "ruby-1.8.4";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/ruby-1.8.4.tar.gz;
md5 = "bd8c2e593e1fa4b01fd98eaf016329bb";
};
buildInputs = [ncurses readline];
}