Unverified Commit 6e48b286 authored by Naïm Camille Favier's avatar Naïm Camille Favier Committed by GitHub
Browse files

convoyeur: init at 0.1.1 (#499017)

parents 625f14ab fe9ae53f
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -975,6 +975,11 @@ lib.mapAttrs mkLicense (
      fullName = "libtiff License";
    };

    liliq-p-11 = {
      spdxId = "LiLiQ-P-1.1";
      fullName = "Licence Libre du Québec – Permissive version 1.1";
    };

    llgpl21 = {
      fullName = "Lisp LGPL; GNU Lesser General Public License version 2.1 with Franz Inc. preamble for clarification of LGPL terms in context of Lisp";
      url = "https://opensource.franz.com/preamble.html";
+30 −0
Original line number Diff line number Diff line
{
  lib,
  rustPlatform,
  fetchFromCodeberg,
  nix-update-script,
}:

rustPlatform.buildRustPackage rec {
  pname = "convoyeur";
  version = "0.1.1";

  src = fetchFromCodeberg {
    owner = "classabbyamp";
    repo = "convoyeur";
    tag = "v${version}";
    hash = "sha256-gfOmi3yyGEjGPooWocCBIO5wR5hKgz4HmbJBiIMh4RE=";
  };

  cargoHash = "sha256-rMRKTaKleO5QNeLM0jAOJ2kCKGfJxQWACWTqU8A8wt8=";

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "IRCv3 FILEHOST extension adapter to external file upload services";
    homepage = "https://codeberg.org/classabbyamp/convoyeur";
    mainProgram = "convoyeur";
    license = lib.licenses.liliq-p-11;
    maintainers = with lib.maintainers; [ lenny ];
  };
}