mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Merge pull request #240583 from keenanweaver/wolfstone-extract
wolfstoneextract: init at 1.2
This commit is contained in:
commit
3454e7a9c8
29
pkgs/games/wolfstoneextract/default.nix
Normal file
29
pkgs/games/wolfstoneextract/default.nix
Normal 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 ];
|
||||
};
|
||||
})
|
@ -37763,6 +37763,8 @@ with pkgs;
|
||||
|
||||
widelands = callPackage ../games/widelands { };
|
||||
|
||||
wolfstoneextract = callPackage ../games/wolfstoneextract { };
|
||||
|
||||
worldofgoo = callPackage ../games/worldofgoo { };
|
||||
|
||||
xboard = callPackage ../games/xboard { };
|
||||
|
Loading…
Reference in New Issue
Block a user