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-10 20:55:52 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-10-11 23:42:04 -0300
commitbe48e33bc31e1354decb4013f8cdc87464c8a019 (patch)
tree3f6ddc546e2fed675604e7d808ed447ed20cd6ed /pkgs/applications/terminal-emulators
parentce3ff6bf4a3228b406cfe019979799a4fb4113f1 (diff)
tilda: migrate to by-name
Diffstat (limited to 'pkgs/applications/terminal-emulators')
-rw-r--r--pkgs/applications/terminal-emulators/tilda/default.nix56
1 files changed, 0 insertions, 56 deletions
diff --git a/pkgs/applications/terminal-emulators/tilda/default.nix b/pkgs/applications/terminal-emulators/tilda/default.nix
deleted file mode 100644
index 01cc4f527a91e..0000000000000
--- a/pkgs/applications/terminal-emulators/tilda/default.nix
+++ /dev/null
@@ -1,56 +0,0 @@
-{ lib, stdenv
-, fetchFromGitHub
-, autoreconfHook
-, pkg-config
-, expat
-, gettext
-, gtk
-, libconfuse
-, pcre2
-, vte
-, makeWrapper
-, nixosTests
-}:
-
-stdenv.mkDerivation rec {
-  pname = "tilda";
-  version = "1.5.4";
-
-  src = fetchFromGitHub {
-    owner = "lanoxx";
-    repo = "tilda";
-    rev = "${pname}-${version}";
-    sha256 = "sha256-uDx28jmjNUyzJbgTJiHbjI9U5mYb9bnfl/9AjbxNUWA=";
-  };
-
-  nativeBuildInputs = [ autoreconfHook makeWrapper pkg-config ];
-  buildInputs = [
-    gettext
-    gtk
-    libconfuse
-    pcre2
-    vte
-  ];
-
-  LD_LIBRARY_PATH = "${expat.out}/lib"; # ugly hack for xgettext to work during build
-
-  # The config locking scheme relies on the binary being called "tilda",
-  # (`pgrep -C tilda`), so a simple `wrapProgram` won't suffice:
-  postInstall = ''
-    mkdir $out/bin/wrapped
-    mv "$out/bin/tilda" "$out/bin/wrapped/tilda"
-    makeWrapper "$out/bin/wrapped/tilda" "$out/bin/tilda" \
-        --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
-  '';
-
-  passthru.tests.test = nixosTests.terminal-emulators.tilda;
-
-  meta = with lib; {
-    description = "A Gtk based drop down terminal for Linux and Unix";
-    homepage = "https://github.com/lanoxx/tilda/";
-    license = licenses.gpl3Plus;
-    maintainers = [ maintainers.AndersonTorres ];
-    platforms = platforms.linux;
-  };
-}
-