summaryrefslogtreecommitdiffstats
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-01-25 01:18:25 +0000
committerGitHub <noreply@github.com>2021-01-25 01:18:25 +0000
commitb10ed56b8e950d57b2f4d9c2a2f21b61416065a4 (patch)
treeb1cb1628f51986e00a35e15f543aed944a541b52 /pkgs/development/tools
parentcc8fd11ffb7fe5cd7f1cfa75ea987429f1b2e77d (diff)
parentb8217bb14abbfa44d19afa1706f6e041114eccbc (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/convco/default.nix26
-rw-r--r--pkgs/development/tools/rust/maturin/default.nix6
2 files changed, 29 insertions, 3 deletions
diff --git a/pkgs/development/tools/convco/default.nix b/pkgs/development/tools/convco/default.nix
new file mode 100644
index 000000000000..d6be170bb8f6
--- /dev/null
+++ b/pkgs/development/tools/convco/default.nix
@@ -0,0 +1,26 @@
+{ lib, rustPlatform, fetchFromGitHub, stdenv, openssl, perl, pkg-config, libiconv, Security }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "convco";
+ version = "0.3.2";
+
+ src = fetchFromGitHub {
+ owner = "convco";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0fqq6irbq1aikhhw08gc9kp0vbk2aminfbvwdlm58cvywyq91bn4";
+ };
+
+ cargoSha256 = "073sfv42fbl8rjm3dih1ghs9vq75mjshp66zdzdan2dmmrnw5m9z";
+
+ nativeBuildInputs = [ openssl perl pkg-config ];
+
+ buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
+
+ meta = with lib; {
+ description = "A Conventional commit cli";
+ homepage = "https://github.com/convco/convco";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ hoverbear ];
+ };
+}
diff --git a/pkgs/development/tools/rust/maturin/default.nix b/pkgs/development/tools/rust/maturin/default.nix
index ff52824ef9a4..d40145f163b2 100644
--- a/pkgs/development/tools/rust/maturin/default.nix
+++ b/pkgs/development/tools/rust/maturin/default.nix
@@ -5,16 +5,16 @@ let
inherit (darwin.apple_sdk.frameworks) Security;
in rustPlatform.buildRustPackage rec {
name = "maturin-${version}";
- version = "0.8.3";
+ version = "0.9.0";
src = fetchFromGitHub {
owner = "PyO3";
repo = "maturin";
rev = "v${version}";
- sha256 = "08l5r7d75id6qzf8xhkjv4hkdr64cq4dbcmdjywmvf9szjbnr65z";
+ sha256 = "sha256-X5/1zEVhhdTuyXcUwC3jVv9Gblmv8LT+ftsVo8BnnZs=";
};
- cargoSha256 = "1n0sxkhcdg2rbzqd7826pa7sxlnn0c2sc8l6lc98xw21vvqisc8n";
+ cargoSha256 = "sha256-PBmuPIpCwC7fr/MKFaeSd/0avoEATlxoeMHisjouAeI=";
nativeBuildInputs = [ pkg-config ];