mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 20:02:14 +03:00
1oom: init at 1.0
This commit is contained in:
parent
da0c48706a
commit
c56cde86ca
32
pkgs/games/1oom/default.nix
Normal file
32
pkgs/games/1oom/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv, fetchFromGitLab, autoreconfHook, libsamplerate, SDL2, SDL2_mixer, readline }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "1oom";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "KilgoreTroutMaskReplicant";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-+HwSykSyAGHtITVOu4nIG87kWwVxGyFXb/NRSjhWlvs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ libsamplerate SDL2 SDL2_mixer readline ];
|
||||
|
||||
outputs = [ "out" "doc" ];
|
||||
|
||||
postInstall = ''
|
||||
install -d $doc/share/doc/${pname}
|
||||
install -t $doc/share/doc/${pname} \
|
||||
HACKING NEWS PHILOSOPHY README doc/*.txt
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://kilgoretroutmaskreplicant.gitlab.io/plain-html/";
|
||||
description = "Master of Orion (1993) game engine recreation";
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
};
|
||||
}
|
@ -25043,6 +25043,8 @@ julia_15 = callPackage ../development/compilers/julia/1.5.nix {
|
||||
|
||||
### GAMES
|
||||
|
||||
_1oom = callPackage ../games/1oom { };
|
||||
|
||||
_2048-in-terminal = callPackage ../games/2048-in-terminal { };
|
||||
|
||||
_20kly = callPackage ../games/20kly { };
|
||||
|
Loading…
Reference in New Issue
Block a user