nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.09 16 lines 354 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}