Merge pull request #239751 from cafkafk/cafkafkdev-git-graph
git-graph: init at unstable-2023-01-01
This commit is contained in:
commit
3f99a04968
3 changed files with 30 additions and 1 deletions
|
@ -2524,7 +2524,7 @@
|
|||
};
|
||||
cafkafk = {
|
||||
email = "christina@cafkafk.com";
|
||||
matrix = "@cafkafk:matrix.cafkafk.com";
|
||||
matrix = "@cafkafk:m.cafkafk.com";
|
||||
name = "Christina Sørensen";
|
||||
github = "cafkafk";
|
||||
githubId = 89321978;
|
||||
|
|
27
pkgs/applications/version-management/git-graph/default.nix
Normal file
27
pkgs/applications/version-management/git-graph/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "git-graph";
|
||||
version = "unstable-2023-01-14";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mlange-42";
|
||||
repo = pname;
|
||||
rev = "9bd54eb0aed6f108364bce9ad0bdff12077038fc";
|
||||
hash = "sha256-tMM/mpt9yzZYSpnOGBuGLM0XTJiiyChfUrERMuyn3mQ=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-ZLF/l2HnIbmkayWXhjYr01M6lGaGiK2UYyp654ncxgo=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Command line tool to show clear git graphs arranged for your branching model";
|
||||
homepage = "https://github.com/mlange-42/git-graph";
|
||||
license = licenses.mit;
|
||||
broken = stdenv.isDarwin;
|
||||
maintainers = with maintainers; [ cafkafk ];
|
||||
};
|
||||
}
|
|
@ -2065,6 +2065,8 @@ with pkgs;
|
|||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
git-graph = callPackage ../applications/version-management/git-graph { };
|
||||
|
||||
git-hound = callPackage ../applications/version-management/git-hound { };
|
||||
|
||||
git-hub = callPackage ../applications/version-management/git-hub { };
|
||||
|
|
Loading…
Reference in a new issue