mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
bugdom: init at 1.3.1
Co-authored-by: Christoph Neidahl <christoph.neidahl@gmail.com>
This commit is contained in:
parent
ff202a635d
commit
4f209920e3
44
pkgs/games/bugdom/default.nix
Normal file
44
pkgs/games/bugdom/default.nix
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{ lib, stdenv, fetchFromGitHub, SDL2, cmake, makeWrapper }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "bugdom";
|
||||||
|
version = "1.3.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jorio";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "sha256:1371inw11rzfrxmc3v4gv5axp56bxjbcr0mhqm4x839401bfq5mf";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
SDL2
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
makeWrapper
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
mkdir -p $out/share/bugdom
|
||||||
|
mv Data $out/share/bugdom
|
||||||
|
install -Dm755 {.,$out/bin}/Bugdom
|
||||||
|
wrapProgram $out/bin/Bugdom --run "cd $out/share/bugdom"
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A port of Bugdom, a 1999 Macintosh game by Pangea Software, for modern operating systems";
|
||||||
|
homepage = "https://github.com/jorio/Bugdom";
|
||||||
|
license = with licenses; [
|
||||||
|
cc-by-sa-40
|
||||||
|
];
|
||||||
|
maintainers = with maintainers; [ lux ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -30262,6 +30262,8 @@ with pkgs;
|
|||||||
|
|
||||||
btanks = callPackage ../games/btanks { };
|
btanks = callPackage ../games/btanks { };
|
||||||
|
|
||||||
|
bugdom = callPackage ../games/bugdom { };
|
||||||
|
|
||||||
bzflag = callPackage ../games/bzflag {
|
bzflag = callPackage ../games/bzflag {
|
||||||
inherit (darwin.apple_sdk.frameworks) Carbon CoreServices;
|
inherit (darwin.apple_sdk.frameworks) Carbon CoreServices;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user