about summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-09-09 22:11:24 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-10-11 23:42:04 -0300
commitf3fabeca1ef0736bca2d299fd9a1ada35a5ebf66 (patch)
tree54c0f3697319e6fd64f150b118b88c7afc5effa3 /pkgs/applications/terminal-emulators
parent2f01d2020296ffa207897c17f7227bc86eb11851 (diff)
germinal: migrate to by-name
Diffstat (limited to 'pkgs/applications/terminal-emulators')
-rw-r--r--pkgs/applications/terminal-emulators/germinal/default.nix58
1 files changed, 0 insertions, 58 deletions
diff --git a/pkgs/applications/terminal-emulators/germinal/default.nix b/pkgs/applications/terminal-emulators/germinal/default.nix
deleted file mode 100644
index aef24f675b1ae..0000000000000
--- a/pkgs/applications/terminal-emulators/germinal/default.nix
+++ /dev/null
@@ -1,58 +0,0 @@
-{ lib, stdenv
-, fetchFromGitHub
-, autoreconfHook
-, pkg-config
-, appstream-glib
-, dbus
-, pango
-, pcre2
-, tmux
-, vte
-, wrapGAppsHook
-, nixosTests
-}:
-
-stdenv.mkDerivation rec {
-  pname = "germinal";
-  version = "26";
-
-  src = fetchFromGitHub {
-    owner = "Keruspe";
-    repo = "Germinal";
-    rev = "v${version}";
-    sha256 = "sha256-HUi+skF4bJj5CY2cNTOC4tl7jhvpXYKqBx2rqKzjlo0=";
-  };
-
-  nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook ];
-  buildInputs = [
-    appstream-glib
-    dbus
-    pango
-    pcre2
-    vte
-  ];
-
-  configureFlags = [
-    "--with-dbusservicesdir=${placeholder "out"}/etc/dbus-1/system-services/"
-  ];
-
-  dontWrapGApps = true;
-
-  fixupPhase = ''
-    runHook preFixup
-    wrapProgram $out/bin/germinal \
-     --prefix PATH ":" "${lib.makeBinPath [ tmux ]}" \
-      "''${gappsWrapperArgs[@]}"
-    runHook postFixup
-  '';
-
-  passthru.tests.test = nixosTests.terminal-emulators.germinal;
-
-  meta = with lib; {
-    description = "A minimal terminal emulator";
-    homepage = "https://github.com/Keruspe/Germinal";
-    license = with licenses; gpl3Plus;
-    platforms = with platforms; unix;
-    maintainers = with maintainers; [ AndersonTorres ];
-  };
-}