nixpkgs/pkgs/applications/version-management/gitoxide/default.nix

32 lines
892 B
Nix
Raw Normal View History

2021-05-15 19:42:38 +00:00
{ lib, stdenv, rustPlatform, cmake, fetchFromGitHub, pkg-config, openssl
, libiconv, Security }:
rustPlatform.buildRustPackage rec {
pname = "gitoxide";
2021-05-10 02:40:00 +00:00
version = "0.7.0";
src = fetchFromGitHub {
owner = "Byron";
repo = "gitoxide";
rev = "v${version}";
2021-05-10 02:40:00 +00:00
sha256 = "12f5qrrfjfqp1aph2nmfi9nyzs1ndvgrb3y53mrszm9kf7fa6pyg";
};
2021-05-10 02:40:00 +00:00
cargoSha256 = "0gw19zdxbkgnj1kcyqn1naj1dnhsx10j860m0xgs5z7bbvfg82p6";
2021-05-10 02:40:00 +00:00
nativeBuildInputs = [ cmake pkg-config ];
2021-05-15 19:42:38 +00:00
buildInputs = if stdenv.isDarwin
then [ libiconv Security ]
else [ openssl ];
# Needed to get openssl-sys to use pkg-config.
OPENSSL_NO_VENDOR = 1;
meta = with lib; {
2020-12-30 02:05:47 +00:00
description = "A command-line application for interacting with git repositories";
homepage = "https://github.com/Byron/gitoxide";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = [ maintainers.syberant ];
};
}