From 4e3fcf6816966e8563731edeb0c53b3a8b6ac383 Mon Sep 17 00:00:00 2001 From: Luis-Hebendanz Date: Tue, 7 Dec 2021 16:31:22 +0100 Subject: [PATCH] katai-struct-compiler: init at 0.9 --- .../kaitai-struct-compiler/default.nix | 36 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/compilers/kaitai-struct-compiler/default.nix diff --git a/pkgs/development/compilers/kaitai-struct-compiler/default.nix b/pkgs/development/compilers/kaitai-struct-compiler/default.nix new file mode 100644 index 00000000000..8561e7eae77 --- /dev/null +++ b/pkgs/development/compilers/kaitai-struct-compiler/default.nix @@ -0,0 +1,36 @@ +{ lib +, stdenv +, fetchzip +, openjdk8 +, makeWrapper +}: + + +stdenv.mkDerivation rec { + pname = "kaitai-struct-compiler"; + version = "0.9"; + + src = fetchzip { + url = "https://github.com/kaitai-io/kaitai_struct_compiler/releases/download/${version}/kaitai-struct-compiler-${version}.zip"; + sha256 = "sha256-2HSasigpJDuWNejNVklnpQwaA4MC030S9taF/7YvzgY="; + }; + + nativeBuildInputs = [ makeWrapper ]; + + installPhase = '' + install -D $src/bin/kaitai-struct-compiler $out/bin/kaitai-struct-compiler + ln -s $out/bin/kaitai-struct-compiler $out/bin/ksc + cp -R $src/lib $out/lib + wrapProgram $out/bin/kaitai-struct-compiler --prefix PATH : ${lib.makeBinPath [ openjdk8 ] } + ''; + + meta = with lib; { + homepage = "https://github.com/kaitai-io/kaitai_struct_compiler"; + description = + "Compiler to generate binary data parsers in C++ / C# / Go / Java / JavaScript / Lua / Perl / PHP / Python / Ruby "; + license = licenses.gpl3Only; + maintainers = with maintainers; [ luis ]; + platforms = platforms.unix; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8a226e7cc34..82f4ebc4333 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -22270,6 +22270,8 @@ with pkgs; lsiutil = callPackage ../os-specific/linux/lsiutil { }; + kaitai-struct-compiler = callPackage ../development/compilers/kaitai-struct-compiler { }; + kmod = callPackage ../os-specific/linux/kmod { }; kmod-blacklist-ubuntu = callPackage ../os-specific/linux/kmod-blacklist-ubuntu { };