mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
godotpcktool: init at 2.1
This commit is contained in:
parent
13d23deeac
commit
80c35e346f
1 changed files with 34 additions and 0 deletions
34
pkgs/by-name/go/godotpcktool/package.nix
Normal file
34
pkgs/by-name/go/godotpcktool/package.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
cmake,
|
||||
}:
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "godotpcktool";
|
||||
version = "2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hhyyrylainen";
|
||||
repo = "GodotPckTool";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-jQ6LypQEz7r04lS4Zmu0EvpV/IYM79pmUlaykVUd+po=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
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;
|
||||
};
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue