dot-http: init at 0.2.0
This commit is contained in:
parent
a19b2b4c03
commit
73da67e5c1
28
pkgs/development/tools/dot-http/default.nix
Normal file
28
pkgs/development/tools/dot-http/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, libiconv, Security }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "dot-http";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bayne";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1s2q4kdldhb5gd14g2h6vzrbjgbbbs9zp2dgmna0rhk1h4qv0mml";
|
||||
};
|
||||
|
||||
cargoSha256 = "0an3hskq1k2j4gdn8wvhfb9pqsc34ibs5bv7sjznkp5jma6fdr9w";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
buildInputs = [ openssl ] ++ stdenv.lib.optionals stdenv.isDarwin [
|
||||
libiconv Security
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Text-based scriptable HTTP client";
|
||||
homepage = "https://github.com/bayne/dot-http";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ mredaelli ];
|
||||
};
|
||||
}
|
@ -985,6 +985,10 @@ in
|
||||
|
||||
dpt-rp1-py = callPackage ../tools/misc/dpt-rp1-py { };
|
||||
|
||||
dot-http = callPackage ../development/tools/dot-http {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
doona = callPackage ../tools/security/doona { };
|
||||
|
||||
ecdsautils = callPackage ../tools/security/ecdsautils { };
|
||||
|
Loading…
Reference in New Issue
Block a user