mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Merge pull request #212584 from fgaz/vassal/glib-and-mainprogram
vassal: add mainProgram and wrapGAppsHook
This commit is contained in:
commit
dd3ce3ebcc
@ -1,4 +1,11 @@
|
||||
{ lib, stdenv, fetchzip, jre, makeWrapper }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchzip
|
||||
, glib
|
||||
, jre
|
||||
, makeWrapper
|
||||
, wrapGAppsHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "VASSAL";
|
||||
@ -9,7 +16,14 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "sha256-t05rwP33/V2S5pkWjv87GmPHtYCMrMxT3o3cOrwytK4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
buildInputs = [
|
||||
glib
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
@ -37,5 +51,6 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.lgpl21Only;
|
||||
maintainers = with maintainers; [ tvestelind ];
|
||||
platforms = platforms.unix;
|
||||
mainProgram = "vassal";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user