summary refs log tree commit diff
path: root/pkgs/applications/misc/hello/ex-2/default.nix
blob: 48931d8654caaf2d615bc71c566ab3418e01cb84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl, perl}:

stdenv.mkDerivation {
  name = "hello-2.1.1";
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/hello-2.1.1.tar.gz;
    md5 = "70c9ccf9fac07f762c24f2df2290784d";
  };
  buildInputs = [perl];
}