1 { lib, stdenv, fetchurl, jre8, unzip }:
3 stdenv.mkDerivation rec {
10 url = "https://github.com/galenframework/galen/releases/download/galen-${version}/galen-bin-${version}.zip";
11 sha256 = "13dq8cf0yy24vym6z7p8hb0mybgpcl4j5crsaq8a6pjfxz6d17mq";
14 nativeBuildInputs = [ unzip ];
21 cat galen | sed -e "s,java,$jre8/bin/java," > $out/bin/galen
22 chmod +x $out/bin/galen
27 homepage = "http://galenframework.com";
28 description = "Automated layout testing for websites";
29 mainProgram = "galen";
30 sourceProvenance = with sourceTypes; [ binaryBytecode ];
31 license = licenses.asl20;
33 platforms = platforms.linux ++ platforms.darwin;