nixpkgs/pkgs/development/libraries/toolbuslib/default.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

12 lines
266 B
Nix

{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];
}