ede066dfcc
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/icedtea-web/versions. These checks were done: - built on NixOS - ran `/nix/store/v9maiya65b10q73b3fb5zf02gqyn11jg-icedtea-web-1.7.1/bin/javaws --help` got 0 exit code - ran `/nix/store/v9maiya65b10q73b3fb5zf02gqyn11jg-icedtea-web-1.7.1/bin/javaws help` got 0 exit code - ran `/nix/store/v9maiya65b10q73b3fb5zf02gqyn11jg-icedtea-web-1.7.1/bin/javaws --version` and found version 1.7.1 - ran `/nix/store/v9maiya65b10q73b3fb5zf02gqyn11jg-icedtea-web-1.7.1/bin/javaws version` and found version 1.7.1 - ran `/nix/store/v9maiya65b10q73b3fb5zf02gqyn11jg-icedtea-web-1.7.1/bin/itweb-settings --help` got 0 exit code - ran `/nix/store/v9maiya65b10q73b3fb5zf02gqyn11jg-icedtea-web-1.7.1/bin/itweb-settings help` got 0 exit code - ran `/nix/store/v9maiya65b10q73b3fb5zf02gqyn11jg-icedtea-web-1.7.1/bin/policyeditor --help` got 0 exit code - ran `/nix/store/v9maiya65b10q73b3fb5zf02gqyn11jg-icedtea-web-1.7.1/bin/policyeditor help` got 0 exit code - found 1.7.1 with grep in /nix/store/v9maiya65b10q73b3fb5zf02gqyn11jg-icedtea-web-1.7.1 - directory tree listing: https://gist.github.com/0e5014eea224d7b6d3648167d610e4f0
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ stdenv, fetchurl, jdk, gtk2, xulrunner, zip, pkgconfig, perl, npapi_sdk, bash, bc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "icedtea-web-${version}";
|
|
|
|
version = "1.7.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://icedtea.wildebeest.org/download/source/${name}.tar.gz";
|
|
sha256 = "1b9z0i9b1dsc2qpfdzbn2fi4vi3idrhm7ig45g1ny40ymvxcwwn9";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig bc perl ];
|
|
buildInputs = [ gtk2 xulrunner zip npapi_sdk ];
|
|
|
|
preConfigure = ''
|
|
#patchShebangs javac.in
|
|
configureFlagsArray+=("BIN_BASH=${bash}/bin/bash")
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--with-jdk-home=${jdk.home}"
|
|
"--disable-docs"
|
|
];
|
|
|
|
mozillaPlugin = "/lib";
|
|
|
|
meta = {
|
|
description = "Java web browser plugin and an implementation of Java Web Start";
|
|
longDescription = ''
|
|
A Free Software web browser plugin running applets written in the Java
|
|
programming language and an implementation of Java Web Start, originally
|
|
based on the NetX project.
|
|
'';
|
|
homepage = http://icedtea.classpath.org/wiki/IcedTea-Web;
|
|
maintainers = with stdenv.lib.maintainers; [ wizeman ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|