pkgs/gitu: remove
This commit is contained in:
parent
f7c40f7e84
commit
6e9948911d
@ -318,7 +318,6 @@
|
|||||||
};
|
};
|
||||||
femtolisp = upkgs.callPackage ./pkgs/femtolisp.nix { };
|
femtolisp = upkgs.callPackage ./pkgs/femtolisp.nix { };
|
||||||
ttfs = upkgs.callPackage ./pkgs/ttfs.nix { };
|
ttfs = upkgs.callPackage ./pkgs/ttfs.nix { };
|
||||||
gitu = upkgs.callPackage ./pkgs/gitu.nix { };
|
|
||||||
fyne = upkgs.callPackage ./pkgs/fyne.nix { inherit upkgs; };
|
fyne = upkgs.callPackage ./pkgs/fyne.nix { inherit upkgs; };
|
||||||
flake-warn =
|
flake-warn =
|
||||||
spkgs.callPackage ./pkgs/flake-warn.nix { inherit spkgs; };
|
spkgs.callPackage ./pkgs/flake-warn.nix { inherit spkgs; };
|
||||||
|
@ -127,7 +127,6 @@ with lib; {
|
|||||||
zeal
|
zeal
|
||||||
|
|
||||||
(callPackage ../configs/helix.nix { })
|
(callPackage ../configs/helix.nix { })
|
||||||
(callPackage ../pkgs/gitu.nix { })
|
|
||||||
]);
|
]);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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 ];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user