pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / games / wolfstoneextract / default.nix
blobb2d76e41d57c33e34b7acde197d4efa271c3fee8
1 { lib
2 , stdenv
3 , fetchFromBitbucket
4 , cmake
5 }:
7 stdenv.mkDerivation (finalAttrs: {
8   pname = "wolfstoneextract";
9   version = "1.2";
11   src = fetchFromBitbucket {
12     owner = "ecwolf";
13     repo = "wolfstoneextract";
14     rev = finalAttrs.version;
15     hash = "sha256-yrYLP2ewOtiry+EgH1IEaxz2Q55mqQ6mRGSxzVUnJ8Q=";
16   };
18   nativeBuildInputs = [
19     cmake
20   ];
22   meta = with lib; {
23     description = "Utility to extract Wolfstone data from Wolfenstein II";
24     mainProgram = "wolfstoneextract";
25     homepage = "https://bitbucket.org/ecwolf/wolfstoneextract/src/master/";
26     platforms = [ "x86_64-linux" ];
27     license = with licenses; [ gpl3Only bsd3 ];
28     maintainers = with maintainers; [ keenanweaver ];
29   };