mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
53 lines
1.4 KiB
Nix
53 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, darwin
|
|
, libiconv
|
|
, makeBinaryWrapper
|
|
, pkg-config
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "proto";
|
|
version = "0.34.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "moonrepo";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-sh4EeK9LGY1t7BDWV31pOjp6CYhOIRR/wCb6LAv68ok=";
|
|
};
|
|
|
|
cargoHash = "sha256-PU6r6Iwv00TLhAZSt9hERWvCgpC27Cuf3rrsjN1gO5k=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
libiconv
|
|
];
|
|
nativeBuildInputs = [ makeBinaryWrapper pkg-config ];
|
|
|
|
# Tests requires network access
|
|
doCheck = false;
|
|
cargoBuildFlags = [ "--bin proto" "--bin proto-shim" ];
|
|
|
|
postInstall = ''
|
|
# proto looks up a proto-shim executable file in $PROTO_LOOKUP_DIR
|
|
wrapProgram $out/bin/${pname} \
|
|
--set PROTO_LOOKUP_DIR $out/bin
|
|
'';
|
|
|
|
meta = {
|
|
description = "A pluggable multi-language version manager";
|
|
longDescription = ''
|
|
proto is a pluggable next-generation version manager for multiple programming languages. A unified toolchain.
|
|
'';
|
|
homepage = "https://moonrepo.dev/proto";
|
|
changelog = "https://github.com/moonrepo/proto/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ nokazn ];
|
|
mainProgram = "proto";
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
};
|
|
}
|