nixpkgs/pkgs/applications/version-management/git-and-tools/git-workspace/default.nix

31 lines
764 B
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, rustPlatform
, Security
, pkgconfig, openssl
}:
rustPlatform.buildRustPackage rec {
pname = "git-workspace";
2021-01-18 21:37:14 +00:00
version = "0.8.0";
src = fetchFromGitHub {
owner = "orf";
repo = pname;
rev = "v${version}";
2021-01-18 21:37:14 +00:00
sha256 = "sha256-//EyGhuE8rMRL03TtECIi0X51/p/GvTqvr2FRQEIqFA=";
};
2021-01-18 21:37:14 +00:00
cargoSha256 = "sha256-lvxEYjVMJoAFFRG5iVfGwxUeJObIxfEaWokk69l++nI=";
nativeBuildInputs = [ pkgconfig ];
2021-01-15 13:21:58 +00:00
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
meta = with lib; {
description = "Sync personal and work git repositories from multiple providers";
homepage = "https://github.com/orf/git-workspace";
license = with licenses; [ mit ];
maintainers = with maintainers; [ misuzu ];
};
}