tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
git-quickfix: init at 0.0.4
Harsh Shandilya
4 years ago
0b612ad3
b2885bbb
+42
2 changed files
expand all
collapse all
unified
split
pkgs
applications
version-management
git-and-tools
git-quickfix
default.nix
top-level
all-packages.nix
+38
pkgs/applications/version-management/git-and-tools/git-quickfix/default.nix
···
1
1
+
{ lib, fetchFromGitHub
2
2
+
, libiconv
3
3
+
, openssl
4
4
+
, pkg-config
5
5
+
, rustPlatform
6
6
+
, stdenv
7
7
+
, Security
8
8
+
, SystemConfiguration
9
9
+
}:
10
10
+
11
11
+
rustPlatform.buildRustPackage rec {
12
12
+
pname = "git-quickfix";
13
13
+
version = "0.0.4";
14
14
+
15
15
+
src = fetchFromGitHub {
16
16
+
owner = "siedentop";
17
17
+
repo = pname;
18
18
+
rev = "v${version}";
19
19
+
sha256 = "sha256-JdRlrNzWMPS3yG1UvKKtHVRix3buSm9jfSoAUxP35BY=";
20
20
+
};
21
21
+
22
22
+
nativeBuildInputs = [ pkg-config ];
23
23
+
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
24
24
+
Security
25
25
+
SystemConfiguration
26
26
+
libiconv
27
27
+
];
28
28
+
29
29
+
cargoSha256 = "sha256-ENeHPhEBniR9L3J5el6QZrIS1Q4O0pNiSzJqP1aQS9Q=";
30
30
+
31
31
+
meta = with lib; {
32
32
+
description = "Quickfix allows you to commit changes in your git repository to a new branch without leaving the current branch";
33
33
+
homepage = "https://github.com/siedentop/git-quickfix";
34
34
+
license = licenses.gpl3;
35
35
+
platforms = platforms.all;
36
36
+
maintainers = with maintainers; [ msfjarvis ];
37
37
+
};
38
38
+
}
+4
pkgs/top-level/all-packages.nix
···
5431
5431
5432
5432
git-open = callPackage ../applications/version-management/git-and-tools/git-open { };
5433
5433
5434
5434
+
git-quickfix = callPackage ../applications/version-management/git-and-tools/git-quickfix {
5435
5435
+
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
5436
5436
+
};
5437
5437
+
5434
5438
git-radar = callPackage ../applications/version-management/git-and-tools/git-radar { };
5435
5439
5436
5440
git-recent = callPackage ../applications/version-management/git-and-tools/git-recent {