about summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-02-15 00:02:51 +0000
committerGitHub <noreply@github.com>2024-02-15 00:02:51 +0000
commit604991674d3921284607cd13a4969bb6382aca65 (patch)
treec6968be3adae75fce690241757f9345947698098 /pkgs/applications/terminal-emulators
parent08b62a0025ee9331067d6f4c478699e6a82bd33d (diff)
parent537907d90e7272b65756a6e8261264bee5465b3c (diff)
downloadnixlib-604991674d3921284607cd13a4969bb6382aca65.tar
nixlib-604991674d3921284607cd13a4969bb6382aca65.tar.gz
nixlib-604991674d3921284607cd13a4969bb6382aca65.tar.bz2
nixlib-604991674d3921284607cd13a4969bb6382aca65.tar.lz
nixlib-604991674d3921284607cd13a4969bb6382aca65.tar.xz
nixlib-604991674d3921284607cd13a4969bb6382aca65.tar.zst
nixlib-604991674d3921284607cd13a4969bb6382aca65.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/applications/terminal-emulators')
-rw-r--r--pkgs/applications/terminal-emulators/tilix/default.nix88
1 files changed, 0 insertions, 88 deletions
diff --git a/pkgs/applications/terminal-emulators/tilix/default.nix b/pkgs/applications/terminal-emulators/tilix/default.nix
deleted file mode 100644
index 65da21cbabc7..000000000000
--- a/pkgs/applications/terminal-emulators/tilix/default.nix
+++ /dev/null
@@ -1,88 +0,0 @@
-{ lib, stdenv
-, fetchFromGitHub
-, meson
-, ninja
-, python3
-, pkg-config
-, ldc
-, dconf
-, dbus
-, gsettings-desktop-schemas
-, desktop-file-utils
-, gettext
-, gtkd
-, libsecret
-, wrapGAppsHook
-, libunwind
-, appstream
-, nixosTests
-, fetchpatch
-}:
-
-stdenv.mkDerivation rec {
-  pname = "tilix";
-  version = "1.9.5";
-
-  src = fetchFromGitHub {
-    owner = "gnunn1";
-    repo = "tilix";
-    rev = version;
-    sha256 = "sha256-sPVL5oYDOmloRVm/nONKkC20vZc907c7ixBF6E2PQ8Y=";
-  };
-
-  # Default upstream else LDC fails to link
-  mesonBuildType = [
-    "debugoptimized"
-  ];
-
-  nativeBuildInputs = [
-    desktop-file-utils
-    ldc
-    meson
-    ninja
-    pkg-config
-    python3
-    wrapGAppsHook
-    appstream
-  ];
-
-  buildInputs = [
-    dbus
-    gettext
-    dconf
-    gsettings-desktop-schemas
-    gtkd
-    libsecret
-    libunwind
-  ];
-
-  patches = [
-    # https://github.com/gnunn1/tilix/issues/2151
-    (fetchpatch {
-      name = "tilix-replace-std-xml-with-gmarkup.patch";
-      url = "https://github.com/gnunn1/tilix/commit/b02779737997a02b98b690e6f8478d28d5e931a5.patch";
-      hash = "sha256-6p+DomJEZ/hCW8RTjttKsTDsgHZ6eFKj/71TU5O/Ysg=";
-    })
-  ];
-
-  postPatch = ''
-    chmod +x meson_post_install.py
-    patchShebangs meson_post_install.py
-  '';
-
-  preFixup = ''
-    substituteInPlace $out/share/applications/com.gexperts.Tilix.desktop \
-      --replace "Exec=tilix" "Exec=$out/bin/tilix"
-  '';
-
-  passthru.tests.test = nixosTests.terminal-emulators.tilix;
-
-  meta = with lib; {
-    description = "Tiling terminal emulator following the Gnome Human Interface Guidelines";
-    homepage = "https://gnunn1.github.io/tilix-web";
-    license = licenses.mpl20;
-    maintainers = with maintainers; [ midchildan ];
-    platforms = platforms.linux;
-    mainProgram = "tilix";
-  };
-}