Merge pull request #260061 from lecoqjacob/update-manix

This commit is contained in:
Artturi 2023-11-21 00:47:59 +02:00 committed by GitHub
commit fc40f07447
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 14 deletions

View File

@ -10065,6 +10065,15 @@
githubId = 887072; githubId = 887072;
name = "Alexander Lebedev"; name = "Alexander Lebedev";
}; };
lecoqjacob = {
name = "Jacob LeCoq";
email = "lecoqjacob@gmail.com";
githubId = 9278174;
github = "lecoqjacob";
keys = [{
fingerprint = "C505 1E8B 06AC 1776 6875 1B60 93AF DAD0 10B3 CB8D";
}];
};
ledif = { ledif = {
email = "refuse@gmail.com"; email = "refuse@gmail.com";
github = "ledif"; github = "ledif";

View File

@ -1,25 +1,29 @@
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security }: {
lib,
stdenv,
fetchFromGitHub,
rustPlatform,
Security,
}:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "manix"; pname = "manix";
version = "0.6.3"; version = "0.7.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mlvzk"; repo = pname;
repo = pname; owner = "lecoqjacob";
rev = "v${version}"; rev = "${version}";
sha256 = "1b7xi8c2drbwzfz70czddc4j33s7g1alirv12dwl91hbqxifx8qs"; hash = "sha256-kTQbeOIGG1HmbsXKfXw5yCZ49kGufbGiCkkIRMTwcsg=";
}; };
buildInputs = lib.optionals stdenv.isDarwin [ Security ]; buildInputs = lib.optionals stdenv.isDarwin [Security];
cargoSha256 = "sha256-7SHUi1qH9Dr4Oi7A6gRmZqhAIr8RzLNU1l1x4WGtQYI=";
cargoSha256 = "1yivx9vzk2fvncvlkwq5v11hb9llr1zlcmy69y12q6xnd9rd8x1b";
meta = with lib; { meta = with lib; {
license = [licenses.mpl20];
platforms = platforms.unix;
homepage = "https://github.com/lecoqjacob/manix";
description = "A Fast Documentation Searcher for Nix"; description = "A Fast Documentation Searcher for Nix";
homepage = "https://github.com/mlvzk/manix"; maintainers = [maintainers.lecoqjacob];
license = [ licenses.mpl20 ];
maintainers = [ maintainers.mlvzk ];
platforms = platforms.unix;
}; };
} }