summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/gmqcc
diff options
context:
space:
mode:
authornecrophcodr <nc@scalehost.eu>2022-06-06 17:17:26 +0200
committernecrophcodr <nc@scalehost.eu>2022-06-08 15:51:58 +0200
commit13712fce0efb0987a22e9780343c23a930621c2e (patch)
treee5e214185c307609d5e44c25bfbc15d2cbd6eeea /pkgs/development/compilers/gmqcc
parent9f16efef4b196eb4a98ce3388b77247e0b8d20a3 (diff)
gmqcc: init at unstable-2021-07-09
Diffstat (limited to 'pkgs/development/compilers/gmqcc')
-rw-r--r--pkgs/development/compilers/gmqcc/default.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/development/compilers/gmqcc/default.nix b/pkgs/development/compilers/gmqcc/default.nix
new file mode 100644
index 000000000000..f3b25e2dbd4a
--- /dev/null
+++ b/pkgs/development/compilers/gmqcc/default.nix
@@ -0,0 +1,43 @@
+{ lib
+, pkgs
+, stdenv
+, fetchFromGitHub
+}:
+
+stdenv.mkDerivation rec {
+ pname = "gmqcc";
+ version = "unstable-2021-07-09";
+
+ src = fetchFromGitHub {
+ owner = "graphitemaster";
+ repo = "gmqcc";
+ rev = "297eab9e5e2c9cc4f41201b68821593a5cf9a725";
+ sha256 = "1hl2qn7402ia03kjkblj4q4wfypxkil99sivsyk2vrnwwpdp4nzx";
+ };
+
+ installPhase = ''
+ runHook preInstall
+
+ mkdir -p $out/bin
+ install -m755 gmqcc $out/bin
+
+ runHook postInstall
+ '';
+
+ meta = with lib; {
+ homepage = "https://graphitemaster.github.io/gmqcc/";
+ description = "A modern QuakeC compiler";
+ longDescription = ''
+ For an enduring period of time the options for a decent compiler for
+ the Quake C programming language were confined to a specific compiler
+ known as QCC. Attempts were made to extend and improve upon the design
+ of QCC, but many foreseen the consequences of building on a broken
+ foundation. The solution was obvious, a new compiler; one born from
+ the NIH realm of sarcastic wit.
+ We welcome you. You won't find a better Quake C compiler.
+ '';
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ necrophcodr ];
+ platforms = platforms.linux;
+ };
+}