about summary refs log tree commit diff
path: root/pkgs/tools/text/xml/sablotron/default.nix
blob: f7faf18ec9c9f299e96b3a089e5f48b1b03704ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl, expat} :

stdenv.mkDerivation {
  name = "sablotron-1.0.2";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/Sablot-1.0.2.tar.gz;
    md5 = "12243bc21b149cad89e98bc89f9c103e";
  };
  buildInputs = [expat];
}