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

derivation {
  name = "hello-2.1.1";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.nluug.nl/pub/gnu/hello/hello-2.1.1.tar.gz;
    md5 = "70c9ccf9fac07f762c24f2df2290784d";
  };
  stdenv = stdenv;
  perl = perl;
}