nixpkgs-suyu/pkgs/tools/admin/intecture/cli.nix

33 lines
806 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform
, openssl, zeromq, czmq, pkg-config, cmake, zlib }:
2017-02-19 00:14:43 +01:00
with rustPlatform;
buildRustPackage rec {
2019-08-31 13:41:23 +02:00
pname = "intecture-cli";
2017-10-12 23:03:35 +02:00
version = "0.3.4";
2017-02-19 00:14:43 +01:00
src = fetchFromGitHub {
owner = "intecture";
repo = "cli";
rev = version;
2017-10-12 23:03:35 +02:00
sha256 = "16a5fkpyqkf8w20k3ircc1d0qmif7nygkzxj6mzk9609dlb0dmxq";
2017-02-19 00:14:43 +01:00
};
cargoSha256 = "09phc0gxz1amrk1bbl5ajg0jmgxcqm4xzbvq3nj58qps991kvgf1";
2017-02-19 00:14:43 +01:00
buildInputs = [ openssl zeromq czmq zlib ];
nativeBuildInputs = [ pkg-config cmake ];
2017-02-19 00:14:43 +01:00
# Needed for tests
USER = "$(whoami)";
meta = with lib; {
description = "A developer friendly, language agnostic configuration management tool for server systems";
homepage = "https://intecture.io";
2017-02-19 00:14:43 +01:00
license = licenses.mpl20;
maintainers = [ maintainers.rushmorem ];
};
}