gwt-dnd: add license

This commit is contained in:
Markus Kowalewski 2018-11-01 21:04:02 +01:00
parent 08f4d756af
commit eea1946708
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB

View file

@ -3,13 +3,14 @@
stdenv.mkDerivation { stdenv.mkDerivation {
name = "gwt-dnd-2.6.5"; name = "gwt-dnd-2.6.5";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = http://gwt-dnd.googlecode.com/files/gwt-dnd-2.6.5.jar; url = http://gwt-dnd.googlecode.com/files/gwt-dnd-2.6.5.jar;
sha256 = "07zdlr8afs499asnw0dcjmw1cnjc646v91lflx5dv4qj374c97fw"; sha256 = "07zdlr8afs499asnw0dcjmw1cnjc646v91lflx5dv4qj374c97fw";
}; };
meta = { meta = with stdenv.lib; {
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
license = licenses.asl20;
}; };
} }