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

stdenv.mkDerivation {
  name = "rte-0.5.2";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/rte-0.5.2.tar.bz2;
    md5 = "152d5d81169f0c9a543078543e354ebe";
  };
}