Merge pull request #285250 from ehmry/fjo

fjo: init at 0.3.5
This commit is contained in:
Peder Bergebakken Sundt 2024-06-10 12:43:38 +02:00 committed by GitHub
commit 11485a636d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,28 @@
{ lib, stdenv, fetchFromGitea, rustPlatform, openssl, pkg-config }:
rustPlatform.buildRustPackage rec {
pname = "fjo";
version = "0.3.5";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "VoiDD";
repo = "fjo";
rev = "v${version}";
hash = "sha256-KjH78yqfZoN24TBYyFZuxf7z9poRov0uFYQ8+eq9p/o=";
};
cargoHash = "sha256-2G/TdajAqKiSoTL5FnukfS/eHkTNaGOj9EFpKsdb02k=";
buildInputs = [ openssl ];
nativeBuildInputs = [ pkg-config ];
meta = {
description = "CLI Tool for Codeberg similar to gh and glab";
homepage = "https://codeberg.org/VoiDD/fjo";
license = lib.licenses.agpl3Only;
mainProgram = "berg";
maintainers = with lib.maintainers; [ ehmry ];
broken = stdenv.isDarwin;
};
}