about summary refs log tree commit diff
path: root/pkgs/development/tools/literate-programming/noweb/default.nix
blob: 9e3233133c7799f4ef48d6882f82799a19d55303 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "noweb-2.10c";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/noweb-20060201.tar.gz;
    md5 = "b4813c6bc0bab9004e57edc1d7e57638";
  };
  builder = ./builder.sh;
}