depot/third_party/nixpkgs/pkgs/games/wolfstoneextract/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

29 lines
675 B
Nix

{ 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 ];
};
})