1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00
nixpkgs/pkgs/development/interpreters/ruby/default.nix

10 lines
201 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
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";
};
}