summary refs log tree commit diff
path: root/pkgs/development/libraries/toolbuslib/default.nix
blob: 562262229d7f1cf907bb465dced40e095401ac6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, aterm} :

stdenv.mkDerivation {
name = "toolbuslib-0.7.2";
src = fetchurl {
         url = http://nix.cs.uu.nl/dist/tarballs/toolbuslib-0.7.2.tar.gz;
         md5 = "6619a155c6326d728d53c6901558e350";
   };
inherit aterm;
buildinputs = [aterm];
}