about summary refs log tree commit diff
path: root/pkgs/by-name/ds
diff options
context:
space:
mode:
authorGliczy <129636582+Gliczy@users.noreply.github.com>2024-01-16 01:33:07 +0100
committerGliczy <129636582+Gliczy@users.noreply.github.com>2024-02-13 01:21:35 +0100
commit7e7357cb287d95a24da0d0ecbb0fb232b7da7722 (patch)
tree012bf5c65c8cc8594927722f23b0a6a4debbbbf1 /pkgs/by-name/ds
parentfad7e7e0ec7a1e83286a424d0aaa08196eee51b4 (diff)
dsda-launcher: init at 1.3.1-hotfix
Diffstat (limited to 'pkgs/by-name/ds')
-rw-r--r--pkgs/by-name/ds/dsda-launcher/package.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/pkgs/by-name/ds/dsda-launcher/package.nix b/pkgs/by-name/ds/dsda-launcher/package.nix
new file mode 100644
index 0000000000000..8a83fb43a6f57
--- /dev/null
+++ b/pkgs/by-name/ds/dsda-launcher/package.nix
@@ -0,0 +1,47 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, qt6
+}:
+stdenv.mkDerivation rec {
+  pname = "dsda-launcher";
+  version = "1.3.1-hotfix";
+
+  src = fetchFromGitHub {
+    owner = "Pedro-Beirao";
+    repo = "dsda-launcher";
+    rev = "v${version}";
+    hash = "sha256-V6VLUl148L47LjKnPe5MZCuhZSMtI0wd18i8b+7jCvk=";
+  };
+
+  nativeBuildInputs = [ qt6.wrapQtAppsHook ];
+
+  buildInputs = [ qt6.qtbase qt6.qtwayland ];
+
+  buildPhase = ''
+    runHook preBuild
+    mkdir -p "./dsda-launcher/build"
+    cd "./dsda-launcher/build"
+    qmake6 ..
+    make
+    runHook postBuild
+  '';
+
+  installPhase = ''
+    runHook preInstall
+    mkdir -p $out/bin
+    cp ./dsda-launcher $out/bin
+
+    install -Dm444 ../icons/dsda-Launcher.desktop $out/share/applications/dsda-Launcher.desktop
+    install -Dm444 ../icons/dsda-launcher.png $out/share/pixmaps/dsda-launcher.png
+    runHook postInstall
+  '';
+
+  meta = with lib; {
+    homepage = "https://github.com/Pedro-Beirao/dsda-launcher";
+    description = "This is a launcher GUI for the dsda-doom source port";
+    license = licenses.gpl3;
+    platforms = platforms.linux;
+    maintainers = [ maintainers.Gliczy ];
+  };
+}