From 68dabf2a1338a8f515f01a811efc03461155738c Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Wed, 3 May 2023 17:59:43 +0300 Subject: [PATCH] paper-note: remove This started failing to build, the upstream website, github repo and development discord guild are gone. https://gitlab.com/posidon_software/paper/-/issues/167#note_1279446605 suggests it's unmaintained too. Let's remove this for now, if things pick up it can be re-added. Closes #229634. --- .../office/paper-note/default.nix | 60 ------------------- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 - 3 files changed, 1 insertion(+), 62 deletions(-) delete mode 100644 pkgs/applications/office/paper-note/default.nix diff --git a/pkgs/applications/office/paper-note/default.nix b/pkgs/applications/office/paper-note/default.nix deleted file mode 100644 index e9fdd485befd..000000000000 --- a/pkgs/applications/office/paper-note/default.nix +++ /dev/null @@ -1,60 +0,0 @@ -{ lib -, stdenv -, fetchFromGitLab -, meson -, ninja -, pkg-config -, vala -, gtk4 -, libgee -, libadwaita -, gtksourceview5 -, blueprint-compiler -, wrapGAppsHook4 -, appstream-glib -, desktop-file-utils -}: - -stdenv.mkDerivation rec { - pname = "paper-note"; - version = "22.11"; - - src = fetchFromGitLab { - owner = "posidon_software"; - repo = "paper"; - rev = version; - hash = "sha256-o5MYagflHE8Aup8CbqauRBrdt3TrSlffs35psYT7hyE="; - }; - - nativeBuildInputs = [ - meson - ninja - vala - pkg-config - wrapGAppsHook4 - appstream-glib - desktop-file-utils - blueprint-compiler - ]; - - buildInputs = [ - gtk4 - libadwaita - libgee - gtksourceview5 - ]; - - postPatch = '' - substituteInPlace src/meson.build \ - --replace "1.2.0" "${libadwaita.version}" - ''; - - meta = with lib; { - description = "A pretty note-taking app for GNOME"; - homepage = "https://gitlab.com/posidon_software/paper"; - mainProgram = "io.posidon.Paper"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ j0lol ]; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 3b021dd25b9f..889034427666 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1196,6 +1196,7 @@ mapAliases ({ packet-cli = metal-cli; # Added 2021-10-25 paperless = paperless-ngx; # Added 2021-06-06 paperless-ng = paperless-ngx; # Added 2022-04-11 + paper-note = throw "paper-note has been removed: abandoned by upstream"; # Added 2023-05-03 parity = openethereum; # Added 2020-08-01 parity-ui = throw "parity-ui was removed because it was broken and unmaintained by upstream"; # Added 2022-01-10 parquet-cpp = throw "'parquet-cpp' has been renamed to/replaced by 'arrow-cpp'"; # Converted to throw 2022-02-22 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 602fef745463..c8c473a5fd92 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10923,8 +10923,6 @@ with pkgs; pamtester = callPackage ../tools/security/pamtester { }; - paper-note = callPackage ../applications/office/paper-note { }; - paperless-ngx = callPackage ../applications/office/paperless-ngx { }; paperoni = callPackage ../tools/text/paperoni {