Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 16 lines 352 B view raw
1{stdenv, fetchurl}: 2 3stdenv.mkDerivation { 4 name = "gwt-dnd-2.6.5"; 5 builder = ./builder.sh; 6 7 src = fetchurl { 8 url = http://gwt-dnd.googlecode.com/files/gwt-dnd-2.6.5.jar; 9 sha256 = "07zdlr8afs499asnw0dcjmw1cnjc646v91lflx5dv4qj374c97fw"; 10 }; 11 12 meta = with stdenv.lib; { 13 platforms = platforms.unix; 14 license = licenses.asl20; 15 }; 16}