nixpkgs/pkgs/applications/networking/instant-messengers/amsn/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

14 lines
308 B
Nix

{stdenv, fetchurl, which, tcl, tk, x11}:
stdenv.mkDerivation {
name = "amsn-0.96rc1";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/amsn-0.96rc1.tar.bz2;
md5 = "1b90fdbb0a51c7646f4d2e6b22f18711";
};
inherit tcl tk;
buildInputs = [which tcl tk x11];
}