2258b21e4b
Build-tested on x86_64 Linux and on Darwin.
16 lines
320 B
Nix
16 lines
320 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gwt-dnd-2.6.5";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://gwt-dnd.googlecode.com/files/gwt-dnd-2.6.5.jar;
|
|
sha256 = "07zdlr8afs499asnw0dcjmw1cnjc646v91lflx5dv4qj374c97fw";
|
|
};
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|