9 stdenv.mkDerivation rec {
16 url = "https://github.com/galenframework/galen/releases/download/galen-${version}/galen-bin-${version}.zip";
17 sha256 = "13dq8cf0yy24vym6z7p8hb0mybgpcl4j5crsaq8a6pjfxz6d17mq";
20 nativeBuildInputs = [ unzip ];
27 cat galen | sed -e "s,java,$jre8/bin/java," > $out/bin/galen
28 chmod +x $out/bin/galen
33 homepage = "http://galenframework.com";
34 description = "Automated layout testing for websites";
35 mainProgram = "galen";
36 sourceProvenance = with sourceTypes; [ binaryBytecode ];
37 license = licenses.asl20;
39 platforms = platforms.linux ++ platforms.darwin;