Merge pull request #280382 from sentientmonkey/master
git-together: init at 0.1.0-alpha.26
This commit is contained in:
commit
31c53f104b
2 changed files with 41 additions and 0 deletions
|
@ -17261,6 +17261,12 @@
|
||||||
githubId = 1286668;
|
githubId = 1286668;
|
||||||
name = "Thilo Uttendorfer";
|
name = "Thilo Uttendorfer";
|
||||||
};
|
};
|
||||||
|
sentientmonkey = {
|
||||||
|
email = "swindsor@gmail.com";
|
||||||
|
github = "sentientmonkey";
|
||||||
|
githubId = 9032;
|
||||||
|
name = "Scott Windsor";
|
||||||
|
};
|
||||||
sents = {
|
sents = {
|
||||||
email = "finn@krein.moe";
|
email = "finn@krein.moe";
|
||||||
github = "sents";
|
github = "sents";
|
||||||
|
|
35
pkgs/by-name/gi/git-together/package.nix
Normal file
35
pkgs/by-name/gi/git-together/package.nix
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
, openssl
|
||||||
|
, pkg-config
|
||||||
|
, darwin
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "git-together";
|
||||||
|
version = "v0.1.0-alpha.26";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "kejadlen";
|
||||||
|
repo = "git-together";
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-2HgOaqlX0mmmvRlALHm90NAdIhby/jWUJO63bQFqc+4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin darwin.Security;
|
||||||
|
|
||||||
|
OPENSSL_NO_VENDOR = true;
|
||||||
|
|
||||||
|
cargoHash = "sha256-mIkhXVuSgcsQf4be7NT0R8rkN9tdgim41gqjbq3ndPA=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Better commit attribution while pairing without messing with your git workflow";
|
||||||
|
homepage = "https://github.com/kejadlen/git-together";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ sentientmonkey ];
|
||||||
|
mainProgram = "git-together";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue