summary refs log tree commit diff
path: root/pkgs/games/1oom
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2020-11-19 13:25:47 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2020-11-19 19:05:23 -0300
commitc56cde86ca3b6faebf59a147a682ccadb67aca1b (patch)
tree8e6460dcf0cf65524742a6d96fac2ccf3c882fb9 /pkgs/games/1oom
parentda0c48706a553c01a6f4d672f5d9da5c68250073 (diff)
downloadnixpkgs-c56cde86ca3b6faebf59a147a682ccadb67aca1b.tar
nixpkgs-c56cde86ca3b6faebf59a147a682ccadb67aca1b.tar.gz
nixpkgs-c56cde86ca3b6faebf59a147a682ccadb67aca1b.tar.bz2
nixpkgs-c56cde86ca3b6faebf59a147a682ccadb67aca1b.tar.lz
nixpkgs-c56cde86ca3b6faebf59a147a682ccadb67aca1b.tar.xz
nixpkgs-c56cde86ca3b6faebf59a147a682ccadb67aca1b.tar.zst
nixpkgs-c56cde86ca3b6faebf59a147a682ccadb67aca1b.zip
1oom: init at 1.0
Diffstat (limited to 'pkgs/games/1oom')
-rw-r--r--pkgs/games/1oom/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/games/1oom/default.nix b/pkgs/games/1oom/default.nix
new file mode 100644
index 00000000000..70c21a3cc1d
--- /dev/null
+++ b/pkgs/games/1oom/default.nix
@@ -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 ];
+  };
+}