From 6e9948911d7d6c4ed2cd2ad21e5b6b0bd870e2aa Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Sun, 24 Mar 2024 12:57:34 -0600 Subject: [PATCH] pkgs/gitu: remove --- flake.nix | 1 - gui/default.nix | 1 - pkgs/gitu.nix | 51 ------------------------------------------------- 3 files changed, 53 deletions(-) delete mode 100644 pkgs/gitu.nix diff --git a/flake.nix b/flake.nix index 9405a10..8373cb9 100644 --- a/flake.nix +++ b/flake.nix @@ -318,7 +318,6 @@ }; femtolisp = upkgs.callPackage ./pkgs/femtolisp.nix { }; ttfs = upkgs.callPackage ./pkgs/ttfs.nix { }; - gitu = upkgs.callPackage ./pkgs/gitu.nix { }; fyne = upkgs.callPackage ./pkgs/fyne.nix { inherit upkgs; }; flake-warn = spkgs.callPackage ./pkgs/flake-warn.nix { inherit spkgs; }; diff --git a/gui/default.nix b/gui/default.nix index 914a543..f50064e 100644 --- a/gui/default.nix +++ b/gui/default.nix @@ -127,7 +127,6 @@ with lib; { zeal (callPackage ../configs/helix.nix { }) - (callPackage ../pkgs/gitu.nix { }) ]); }; diff --git a/pkgs/gitu.nix b/pkgs/gitu.nix deleted file mode 100644 index b8d8ac7..0000000 --- a/pkgs/gitu.nix +++ /dev/null @@ -1,51 +0,0 @@ -{ lib -, rustPlatform -, fetchFromGitHub -, pkg-config -, openssl -, git -, -}: -rustPlatform.buildRustPackage rec { - pname = "gitu"; - version = "0.6.2"; - - src = fetchFromGitHub { - owner = "altsem"; - repo = pname; - rev = "v${version}"; - hash = "sha256-ymAggfyLPpXp4aQPHp1R+olKeCZwrcwu1GldM8yJVtQ="; - }; - - cargoHash = "sha256-pIA9AnJoauT5nLxSgzR2Lk3wSo30fXAepAJlMahSuCA="; - - buildInputs = [ git openssl ]; - nativeBuildInputs = [ pkg-config ]; - - # running 30 tests - # test checkout_menu ... FAILED - # test checkout_new_branch ... FAILED - # test discard_branch_confirm ... FAILED - # test fetch_all ... FAILED - # test help_menu ... FAILED - # test fresh_init ... FAILED - # test go_down_past_collapsed ... FAILED - # test log ... FAILED - # test merge_conflict ... FAILED - # test log_other ... FAILED - # test hide_untracked ... FAILED - # test new_file ... FAILED - # test moved_file ... FAILED - # test no_repo ... FAILED - # test new_commit ... FAILED - # test rebase_conflict ... FAILED - # test pull ... FAILED - doCheck = false; - - meta = with lib; { - description = " A TUI Git client inspired by Magit "; - homepage = "https://github.com/altsem/gitu"; - license = licenses.mit; - maintainers = [ maintainers.qbit ]; - }; -}