about summary refs log tree commit diff
path: root/pkgs/applications/misc/citations/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/citations/default.nix')
-rw-r--r--pkgs/applications/misc/citations/default.nix91
1 files changed, 0 insertions, 91 deletions
diff --git a/pkgs/applications/misc/citations/default.nix b/pkgs/applications/misc/citations/default.nix
deleted file mode 100644
index ae3964355a48..000000000000
--- a/pkgs/applications/misc/citations/default.nix
+++ /dev/null
@@ -1,91 +0,0 @@
-{ cargo
-, darwin
-, desktop-file-utils
-, fetchFromGitLab
-, gettext
-, glib
-, gtk4
-, gtksourceview5
-, lib
-, libadwaita
-, meson
-, ninja
-, pkg-config
-, poppler
-, rustPlatform
-, rustc
-, stdenv
-, testers
-, wrapGAppsHook4
-, clippy
-}:
-
-stdenv.mkDerivation (finalAttrs: {
-  pname = "citations";
-  version = "0.6.2";
-
-  src = fetchFromGitLab {
-    domain = "gitlab.gnome.org";
-    owner = "World";
-    repo = "citations";
-    rev = finalAttrs.version;
-    hash = "sha256-RV9oQcXzRsNcvZc/8Xt7qZ/88DvHofC2Av0ftxzeF6Q=";
-  };
-
-  cargoDeps = rustPlatform.fetchCargoTarball {
-    src = finalAttrs.src;
-    hash = "sha256-XlqwgXuwxR6oEz0+hYAp/3b+XxH+Vd/DGr5j+iKhUjQ=";
-  };
-
-  nativeBuildInputs = [
-    desktop-file-utils
-    gettext
-    glib
-    meson
-    ninja
-    pkg-config
-    rustPlatform.cargoSetupHook
-    cargo
-    rustc
-    wrapGAppsHook4
-  ];
-
-  buildInputs = [
-    glib
-    gtk4
-    gtksourceview5
-    libadwaita
-    poppler
-  ] ++ lib.optionals stdenv.isDarwin [
-    darwin.apple_sdk.frameworks.Foundation
-  ];
-
-  env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang (lib.concatStringsSep " " [
-    "-Wno-typedef-redefinition"
-    "-Wno-unused-parameter"
-    "-Wno-missing-field-initializers"
-    "-Wno-incompatible-function-pointer-types"
-  ]);
-
-  doCheck = true;
-
-  nativeCheckInputs = [ clippy ];
-
-  preCheck = ''
-    sed -i -e '/PATH=/d' ../src/meson.build
-  '';
-
-  passthru.tests.version = testers.testVersion {
-    package = finalAttrs.finalPackage;
-    command = "citations --help";
-  };
-
-  meta = with lib; {
-    description = "Manage your bibliographies using the BibTeX format";
-    homepage = "https://apps.gnome.org/app/org.gnome.World.Citations";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ benediktbroich ];
-    platforms = platforms.unix;
-    mainProgram = "citations";
-  };
-})