about summary refs log tree commit diff
path: root/pkgs/development/compilers/gwydion-dylan/binary.nix
blob: e453bef5d455b8abd06e6e88e66f4bc2248eacfe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "binary-gwydion-dylan-2.4.0";
  builder = ./binary-builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/gwydion-dylan-2.4.0-x86-linux.tar.gz;
    md5 = "52643ad51a455d21fd4d5bf82d98914c";
  };
}