about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-05-14 12:54:15 +0200
committerGitHub <noreply@github.com>2024-05-14 12:54:15 +0200
commit0fa65181a64a65b77922fc2b84f3421d756090b0 (patch)
tree750a3b5da90b1d56a8817e7d6ae179ee4603db22 /pkgs/development/tools
parent0a77146e7ad07ee20d6fa576669dd41c55fb5730 (diff)
parent6dd36412f26cdccbf74b3ccfcb8cb1613d418e37 (diff)
Merge pull request #311443 from pluiedev/zhf-24.05/tartan
tartan: 0.3.0-unstable-2021-12-13 -> 0.3.0-unstable-2023-10-11
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/analysis/tartan/default.nix53
1 files changed, 0 insertions, 53 deletions
diff --git a/pkgs/development/tools/analysis/tartan/default.nix b/pkgs/development/tools/analysis/tartan/default.nix
deleted file mode 100644
index f56a6260e7f10..0000000000000
--- a/pkgs/development/tools/analysis/tartan/default.nix
+++ /dev/null
@@ -1,53 +0,0 @@
-{ stdenv
-, lib
-, fetchFromGitLab
-, meson
-, ninja
-, pkg-config
-, llvmPackages
-, gobject-introspection
-, glib
-, unstableGitUpdater
-}:
-
-stdenv.mkDerivation rec {
-  pname = "tartan";
-  version = "0.3.0-unstable-2021-12-23";
-
-  src = fetchFromGitLab {
-    domain = "gitlab.freedesktop.org";
-    owner = "tartan";
-    repo = "tartan";
-    rev = "bd4ea95d8b3ce1258491e9fac7fcc37d2b241a16";
-    sha256 = "l3duPt8Kh/JljzOV+Dm26XbS7gZ+mmFfYUYofWSJRyo=";
-  };
-
-  nativeBuildInputs = [
-    meson
-    ninja
-    pkg-config
-  ];
-
-  buildInputs = [
-    gobject-introspection
-    glib
-    llvmPackages.libclang
-    llvmPackages.libllvm
-  ];
-
-  passthru = {
-    updateScript = unstableGitUpdater {
-      # The updater tries src.url by default, which does not exist for fetchFromGitLab (fetchurl).
-      url = "https://gitlab.freedesktop.org/tartan/tartan.git";
-    };
-  };
-
-  meta = with lib; {
-    broken = stdenv.isDarwin;
-    description = "Tools and Clang plugins for developing code with GLib";
-    homepage = "https://freedesktop.org/wiki/Software/tartan";
-    license = licenses.gpl3Plus;
-    platforms = platforms.unix;
-    maintainers = with maintainers; [ jtojnar ];
-  };
-}