mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
7323f9ee0c
svn path=/nixpkgs/trunk/; revision=17876
12 lines
260 B
Nix
12 lines
260 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";
|
|
};
|
|
}
|