Merge pull request #139952 from msfjarvis/hs/2021-09-29/add-git-quickfix

This commit is contained in:
Sandro
2021-09-29 23:22:46 +02:00
committed by GitHub
2 changed files with 42 additions and 0 deletions
@@ -0,0 +1,38 @@
{ lib, fetchFromGitHub
, libiconv
, openssl
, pkg-config
, rustPlatform
, stdenv
, Security
, SystemConfiguration
}:
rustPlatform.buildRustPackage rec {
pname = "git-quickfix";
version = "0.0.4";
src = fetchFromGitHub {
owner = "siedentop";
repo = pname;
rev = "v${version}";
sha256 = "sha256-JdRlrNzWMPS3yG1UvKKtHVRix3buSm9jfSoAUxP35BY=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
Security
SystemConfiguration
libiconv
];
cargoSha256 = "sha256-ENeHPhEBniR9L3J5el6QZrIS1Q4O0pNiSzJqP1aQS9Q=";
meta = with lib; {
description = "Quickfix allows you to commit changes in your git repository to a new branch without leaving the current branch";
homepage = "https://github.com/siedentop/git-quickfix";
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ msfjarvis ];
};
}
+4
View File
@@ -5431,6 +5431,10 @@ with pkgs;
git-open = callPackage ../applications/version-management/git-and-tools/git-open { };
git-quickfix = callPackage ../applications/version-management/git-and-tools/git-quickfix {
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
};
git-radar = callPackage ../applications/version-management/git-and-tools/git-radar { };
git-recent = callPackage ../applications/version-management/git-and-tools/git-recent {