From f9f1092c7393d662382fb45fb7a216a42985e5a0 Mon Sep 17 00:00:00 2001 From: ByteSudoer Date: Wed, 3 Apr 2024 18:44:20 +0100 Subject: [PATCH] koji: init at 2.2.0 --- pkgs/by-name/ko/koji/package.nix | 43 ++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 pkgs/by-name/ko/koji/package.nix diff --git a/pkgs/by-name/ko/koji/package.nix b/pkgs/by-name/ko/koji/package.nix new file mode 100644 index 000000000000..b42362245e2d --- /dev/null +++ b/pkgs/by-name/ko/koji/package.nix @@ -0,0 +1,43 @@ +{ lib +, rustPlatform +, fetchFromGitHub +, pkg-config +, perl +, udev +, openssl +}: + +rustPlatform.buildRustPackage rec { + pname = "koji"; + version = "2.2.0"; + + src = fetchFromGitHub { + owner = "its-danny"; + repo = "koji"; + rev = version; + hash = "sha256-2kBjHX7izo4loJ8oyPjE9FtCvUODC3Sm4T8ETIdeGZM="; + }; + + cargoHash = "sha256-owppYDt0YdWoDvfmzVfiIPjLgTAT9eTI1LpRr4Y3XQA="; + + OPENSSL_NO_VENDOR = 1; + + nativeBuildInputs = [ + pkg-config + perl + udev + ]; + + buildInputs = [ + openssl.dev + ]; + + meta = with lib; { + description = "An interactive CLI for creating conventional commits"; + homepage = "https://github.com/its-danny/koji"; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ ByteSudoer ]; + mainProgram = "koji"; + platforms = platforms.unix; + }; +}