Merge pull request #260061 from lecoqjacob/update-manix

authored by

Artturi and committed by
GitHub
fc40f074 b6eba20e

+27 -14
+9
maintainers/maintainer-list.nix
··· 10065 10065 githubId = 887072; 10066 10066 name = "Alexander Lebedev"; 10067 10067 }; 10068 + lecoqjacob = { 10069 + name = "Jacob LeCoq"; 10070 + email = "lecoqjacob@gmail.com"; 10071 + githubId = 9278174; 10072 + github = "lecoqjacob"; 10073 + keys = [{ 10074 + fingerprint = "C505 1E8B 06AC 1776 6875 1B60 93AF DAD0 10B3 CB8D"; 10075 + }]; 10076 + }; 10068 10077 ledif = { 10069 10078 email = "refuse@gmail.com"; 10070 10079 github = "ledif";
+18 -14
pkgs/tools/nix/manix/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, Security }: 2 - 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + rustPlatform, 6 + Security, 7 + }: 3 8 rustPlatform.buildRustPackage rec { 4 9 pname = "manix"; 5 - version = "0.6.3"; 10 + version = "0.7.1"; 6 11 7 12 src = fetchFromGitHub { 8 - owner = "mlvzk"; 9 - repo = pname; 10 - rev = "v${version}"; 11 - sha256 = "1b7xi8c2drbwzfz70czddc4j33s7g1alirv12dwl91hbqxifx8qs"; 13 + repo = pname; 14 + owner = "lecoqjacob"; 15 + rev = "${version}"; 16 + hash = "sha256-kTQbeOIGG1HmbsXKfXw5yCZ49kGufbGiCkkIRMTwcsg="; 12 17 }; 13 18 14 - buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 15 - 16 - cargoSha256 = "1yivx9vzk2fvncvlkwq5v11hb9llr1zlcmy69y12q6xnd9rd8x1b"; 19 + buildInputs = lib.optionals stdenv.isDarwin [Security]; 20 + cargoSha256 = "sha256-7SHUi1qH9Dr4Oi7A6gRmZqhAIr8RzLNU1l1x4WGtQYI="; 17 21 18 22 meta = with lib; { 23 + license = [licenses.mpl20]; 24 + platforms = platforms.unix; 25 + homepage = "https://github.com/lecoqjacob/manix"; 19 26 description = "A Fast Documentation Searcher for Nix"; 20 - homepage = "https://github.com/mlvzk/manix"; 21 - license = [ licenses.mpl20 ]; 22 - maintainers = [ maintainers.mlvzk ]; 23 - platforms = platforms.unix; 27 + maintainers = [maintainers.lecoqjacob]; 24 28 }; 25 29 }