Merge pull request #240583 from keenanweaver/wolfstone-extract

wolfstoneextract: init at 1.2
This commit is contained in:
Pol Dellaiera 2023-07-02 06:07:34 +02:00 committed by GitHub
commit 3454e7a9c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, stdenv
, fetchFromBitbucket
, cmake
}:
stdenv.mkDerivation (finalAttrs: {
pname = "wolfstoneextract";
version = "1.2";
src = fetchFromBitbucket {
owner = "ecwolf";
repo = "wolfstoneextract";
rev = finalAttrs.version;
hash = "sha256-yrYLP2ewOtiry+EgH1IEaxz2Q55mqQ6mRGSxzVUnJ8Q=";
};
nativeBuildInputs = [
cmake
];
meta = with lib; {
description = "Utility to extract Wolfstone data from Wolfenstein II";
homepage = "https://bitbucket.org/ecwolf/wolfstoneextract/src/master/";
platforms = [ "x86_64-linux" ];
license = with licenses; [ gpl3Only bsd3 ];
maintainers = with maintainers; [ keenanweaver ];
};
})

View file

@ -37763,6 +37763,8 @@ with pkgs;
widelands = callPackage ../games/widelands { };
wolfstoneextract = callPackage ../games/wolfstoneextract { };
worldofgoo = callPackage ../games/worldofgoo { };
xboard = callPackage ../games/xboard { };