about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/java/gwt-widgets/default.nix
blob: 692326a21895353daa2c9b9b6df31362f5f435bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{lib, stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "gwt-widgets-0.2.0";
  builder = ./builder.sh;

  src = fetchurl {
    url = "mirror://sourceforge/gwt-widget/gwt-widgets-0.2.0-bin.tar.gz";
    sha256 = "09isj4j6842rj13nv8264irkjjhvmgihmi170ciabc98911bakxb";
  };

  meta = with lib; {
    platforms = platforms.unix;
    license = with licenses; [ afl21 lgpl2 ];
  };
}