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

stdenv.mkDerivation {
  name = "hello-2.1.1";
  builder = ./builder.sh;
  src = fetchurl {
    url = mirror://gnu/hello/hello-2.1.1.tar.gz;
    md5 = "70c9ccf9fac07f762c24f2df2290784d";
  };
  inherit perl;

  meta = {
    description = "GNU Hello, a classic computer science tool";
  };
}