about summary refs log tree commit diff
path: root/pkgs/development/libraries/aterm/2.4.nix
blob: d8287c38086a4f6b310a3980c687039fcbbc13b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "aterm-2.4.2y";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/aterm-2.4.2.tar.gz;
    md5 = "18617081dd112d85e6c4b1b552628114";
  };
  patches = 
    [./aterm-alias-fix-2.patch] ++
    (if stdenv ? isMinGW && stdenv.isMinGW then [./mingw-asm.patch] else []);
  meta = {
    homepage = http://www.cwi.nl/htbin/sen1/twiki/bin/view/SEN1/ATerm;
    license = "LGPL";
    description = "Library for manipulation of term data structures in C";
  };
#  unpackPhase = "while true; do sleep 4; echo x; done";
#  unpackPhase = "sleep 10000";
   unpackPhase = "mkdir $out; echo foo > $out/foo; ln -s foo $out/bar; exit 0";
}