Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / wolfstoneextract / default.nix
blob159e6ae3f15ca2355079199de44282fba01208d8
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     homepage = "https://bitbucket.org/ecwolf/wolfstoneextract/src/master/";
25     platforms = [ "x86_64-linux" ];
26     license = with licenses; [ gpl3Only bsd3 ];
27     maintainers = with maintainers; [ keenanweaver ];
28   };