summary refs log tree commit diff
path: root/pkgs/development/libraries/rte/default.nix
blob: c38bfd6fc99af0d6a2fe5cc63c726a51f9e826eb (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://nix.cs.uu.nl/dist/tarballs/rte-0.5.2.tar.bz2;
    md5 = "152d5d81169f0c9a543078543e354ebe";
  };
}