Skip to content

Commit

Permalink
godotpcktool: init at 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ambossmann committed Jan 14, 2025
1 parent 13d23de commit a287f32
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/by-name/go/godotpcktool/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
lib,
stdenv,
fetchFromGitHub,
nix-update-script,
cmake,
}:
stdenv.mkDerivation rec {
pname = "godotpcktool";
version = "2.1";

src = fetchFromGitHub {
owner = "hhyyrylainen";
repo = "GodotPckTool";
tag = "v${version}";
hash = "sha256-jQ6LypQEz7r04lS4Zmu0EvpV/IYM79pmUlaykVUd+po=";
fetchSubmodules = true;
};

nativeBuildInputs = [
cmake
];

buildInputs = [ ];

passthru.updateScript = nix-update-script { };

meta = {
description = "Standalone tool for extracting and creating Godot .pck files";
homepage = "https://github.com/hhyyrylainen/GodotPckTool";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ambossmann ];
mainProgram = "godotpcktool";
platforms = lib.platforms.linux;
};
}

0 comments on commit a287f32

Please sign in to comment.