Unverified Commit 3454e7a9 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #240583 from keenanweaver/wolfstone-extract

wolfstoneextract: init at 1.2
parents 2700e52d 74aa74f3
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
{ 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 ];
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -37763,6 +37763,8 @@ with pkgs;
  widelands = callPackage ../games/widelands { };
  wolfstoneextract = callPackage ../games/wolfstoneextract { };
  worldofgoo = callPackage ../games/worldofgoo { };
  xboard =  callPackage ../games/xboard { };