2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, unzip }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2022-02-10 20:34:41 +00:00
|
|
|
pname = "gocd-server";
|
2020-04-24 23:36:52 +00:00
|
|
|
version = "19.3.0";
|
|
|
|
rev = "8959";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.go.cd/binaries/${version}-${rev}/generic/go-server-${version}-${rev}.zip";
|
|
|
|
sha256 = "0c30qzd6awlw0zx91rk6na0mmgykqkgrw9ychx18ivjwma0hr0sc";
|
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A continuous delivery server specializing in advanced workflow modeling and visualization";
|
|
|
|
homepage = "http://www.go.cd";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ grahamc swarren83 ];
|
|
|
|
};
|
|
|
|
|
2021-03-19 17:17:44 +00:00
|
|
|
nativeBuildInputs = [ unzip ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildCommand = "
|
|
|
|
unzip $src -d $out
|
|
|
|
mv $out/go-server-${version} $out/go-server
|
|
|
|
mkdir -p $out/go-server/conf
|
|
|
|
";
|
|
|
|
}
|