From f2ae28cdd433c40a760e906eec228962e3ac9085 Mon Sep 17 00:00:00 2001 From: sund3RRR Date: Tue, 24 Dec 2024 23:33:11 +0300 Subject: [PATCH] tijolo: drop --- pkgs/by-name/ti/tijolo/package.nix | 72 ------------------------------ pkgs/by-name/ti/tijolo/shards.nix | 42 ----------------- pkgs/top-level/aliases.nix | 1 + 3 files changed, 1 insertion(+), 114 deletions(-) delete mode 100644 pkgs/by-name/ti/tijolo/package.nix delete mode 100644 pkgs/by-name/ti/tijolo/shards.nix diff --git a/pkgs/by-name/ti/tijolo/package.nix b/pkgs/by-name/ti/tijolo/package.nix deleted file mode 100644 index 0666c2bed209..000000000000 --- a/pkgs/by-name/ti/tijolo/package.nix +++ /dev/null @@ -1,72 +0,0 @@ -{ - stdenv, - lib, - fetchFromGitHub, - crystal, - vte-gtk4, - libgit2, - gtk4, - libadwaita, - editorconfig-core-c, - gtksourceview5, - wrapGAppsHook4, - gobject-introspection, - desktopToDarwinBundle, -}: - -crystal.buildCrystalPackage rec { - pname = "tijolo"; - version = "0.9.0"; - - src = fetchFromGitHub { - owner = "hugopl"; - repo = "tijolo"; - rev = "v${version}"; - hash = "sha256-RVdZce9csnhJx5p+jBANDCsz2eB/l3EHExwKMbKL9y0="; - }; - - postPatch = '' - substituteInPlace Makefile \ - --replace-fail "shards install" "true" - ''; - - shardsFile = ./shards.nix; - copyShardDeps = true; - - preBuild = '' - cd lib/gi-crystal && shards build -Dpreview_mt --release --no-debug - cd ../.. && mkdir bin/ && cp lib/gi-crystal/bin/gi-crystal bin/ - ''; - - nativeBuildInputs = [ - wrapGAppsHook4 - gobject-introspection - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ desktopToDarwinBundle ]; - buildInputs = [ - gtk4 - libadwaita - vte-gtk4 - libgit2 - gtksourceview5 - editorconfig-core-c - ]; - - buildTargets = [ "all" ]; - doCheck = false; - - installTargets = [ - "install" - "post-install" - "install-fonts" - ]; - doInstallCheck = false; - - meta = with lib; { - description = "Lightweight, keyboard-oriented IDE for the masses"; - homepage = "https://github.com/hugopl/tijolo"; - license = licenses.mit; - mainProgram = "tijolo"; - maintainers = with maintainers; [ sund3RRR ]; - broken = true; - }; -} diff --git a/pkgs/by-name/ti/tijolo/shards.nix b/pkgs/by-name/ti/tijolo/shards.nix deleted file mode 100644 index 360778119e28..000000000000 --- a/pkgs/by-name/ti/tijolo/shards.nix +++ /dev/null @@ -1,42 +0,0 @@ -{ - fzy = { - url = "https://github.com/hugopl/fzy.git"; - rev = "v0.5.5"; - sha256 = "1zk95m43ymx9ilwr6iw9l44nkmp4sas28ib0dkr07hkhgrkw68sv"; - }; - gi-crystal = { - url = "https://github.com/hugopl/gi-crystal.git"; - rev = "v0.22.2"; - sha256 = "0bpa1f8iaf97z2kbgjc7nc8km7nd7bppiwna319lm2hvm8m5pw15"; - }; - gtk4 = { - url = "https://github.com/hugopl/gtk4.cr.git"; - rev = "v0.16.1"; - sha256 = "1cqkbh072y70l8g0p040vf50k920p32ry1larnwn9mqabd74jwaj"; - }; - harfbuzz = { - url = "https://github.com/hugopl/harfbuzz.cr.git"; - rev = "v0.2.0"; - sha256 = "06wgqxwyib5416yp53j2iwcbr3bl4jjxb1flm7z103l365par694"; - }; - libadwaita = { - url = "https://github.com/geopjr/libadwaita.cr.git"; - rev = "cffabb56e911d2a90c53c2fd14d6bd08bf5ac446"; - sha256 = "0gcq04vgxg0vff9fcalgzq9phq0y76diihkzhlfn91bdxwkx7rl3"; - }; - pango = { - url = "https://github.com/hugopl/pango.cr.git"; - rev = "v0.3.1"; - sha256 = "0xlf127flimnll875mcq92q7xsi975rrgdpcpmnrwllhdhfx9qmv"; - }; - toml = { - url = "https://github.com/crystal-community/toml.cr.git"; - rev = "v0.7.0"; - sha256 = "0vznx2irvx6m8w6chdf9ms72n2w0cf2m5cwh0cjmp1jz9y3xwv7z"; - }; - vte = { - url = "https://github.com/hugopl/vte.cr.git"; - rev = "v0.1.0"; - sha256 = "18x2l9cm8czhwpdfng3rz00kn07c49y0555kf2j5l2wb0g05snh3"; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 05c5d2924793..a2ef13e41f6c 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1298,6 +1298,7 @@ mapAliases { testVersion = testers.testVersion; # Added 2022-04-20 tfplugindocs = terraform-plugin-docs; # Added 2023-11-01 invalidateFetcherByDrvHash = testers.invalidateFetcherByDrvHash; # Added 2022-05-05 + tijolo = throw "'tijolo' has been removed due to being unmaintained"; # Added 2024-12-27 timescale-prometheus = throw "'timescale-prometheus' has been renamed to/replaced by 'promscale'"; # Converted to throw 2024-10-17 tightvnc = throw "'tightvnc' has been removed as the version 1.3 is not maintained upstream anymore and is insecure"; # Added 2024-08-22 tix = tclPackages.tix; # Added 2024-10-02