summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/toolbuslib/toolbuslib-0.6.nix
blob: 22b37a0d58a5c74fc00736ad26cd388a59f3354d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, aterm}:

stdenv.mkDerivation {
  name = "toolbuslib-0.6";
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/toolbuslib-0.6.tar.gz;
    md5 = "e117c574b428408ad172b1ad904ff430";
  };
  buildInputs = [aterm];
}