mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ lib, stdenvNoCC, fetchurl, jre, makeWrapper }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "karate";
|
|
version = "1.5.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/karatelabs/karate/releases/download/v${version}/karate-${version}.jar";
|
|
sha256 = "sha256-3uz51dQvyvK7gcmRoUjfszghBaPfVc/SJaKSEWkfgr8=";
|
|
};
|
|
dontUnpack = true;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
makeWrapper ${jre}/bin/java $out/bin/karate --add-flags "-jar $src"
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "API Test Automation Made Simple";
|
|
mainProgram = "karate";
|
|
longDescription = ''
|
|
Karate is the only open-source tool to combine API
|
|
test-automation, mocks, performance-testing and even UI
|
|
automation into a single, unified framework. The BDD syntax
|
|
popularized by Cucumber is language-neutral, and easy for even
|
|
non-programmers. Assertions and HTML reports are built-in, and
|
|
you can run tests in parallel for speed.
|
|
'';
|
|
homepage = "https://github.com/karatelabs/karate";
|
|
changelog = "https://github.com/karatelabs/karate/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.kephasp ];
|
|
platforms = jre.meta.platforms;
|
|
};
|
|
}
|