Unverified Commit 74aa74f3 authored by Keenan Weaver's avatar Keenan Weaver
Browse files

wolfstoneextract: init at 1.2

wolfstoneextract: implement finalAttrs

wolfstoneextract: add platform & licenses
parent cdefe1d0
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
@@ -37626,6 +37626,8 @@ with pkgs;
  widelands = callPackage ../games/widelands { };
  wolfstoneextract = callPackage ../games/wolfstoneextract { };
  worldofgoo = callPackage ../games/worldofgoo { };
  xboard =  callPackage ../games/xboard { };