2021-01-23 13:26:19 +01:00
|
|
|
{ lib, stdenv, fetchurl, jre8, unzip }:
|
2016-02-25 10:25:31 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "galen";
|
2019-05-01 00:09:45 +02:00
|
|
|
version = "2.4.4";
|
2016-02-25 10:25:31 +01:00
|
|
|
|
2016-07-14 10:52:13 +02:00
|
|
|
inherit jre8;
|
2016-02-25 10:25:31 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-03-08 14:31:10 +01:00
|
|
|
url = "https://github.com/galenframework/galen/releases/download/galen-${version}/galen-bin-${version}.zip";
|
2019-05-01 00:09:45 +02:00
|
|
|
sha256 = "13dq8cf0yy24vym6z7p8hb0mybgpcl4j5crsaq8a6pjfxz6d17mq";
|
2016-02-25 10:25:31 +01:00
|
|
|
};
|
|
|
|
|
2021-02-20 22:01:53 +01:00
|
|
|
nativeBuildInputs = [ unzip ];
|
2016-02-25 10:25:31 +01:00
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2016-07-14 10:52:13 +02:00
|
|
|
cat galen | sed -e "s,java,$jre8/bin/java," > $out/bin/galen
|
2016-02-25 10:25:31 +01:00
|
|
|
chmod +x $out/bin/galen
|
|
|
|
cp galen.jar $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-01-23 13:26:19 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://galenframework.com";
|
2016-02-25 10:25:31 +01:00
|
|
|
description = "Automated layout testing for websites";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|