procs: 0.12.1 -> 0.12.3, mark borken on darwin, remove inactive maintainer

This commit is contained in:
Sandro Jäckel 2022-05-27 17:09:41 +02:00
parent a64bf22230
commit 1a5566bde2
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "procs";
version = "0.12.1";
version = "0.12.3";
src = fetchFromGitHub {
owner = "dalance";
repo = pname;
rev = "v${version}";
sha256 = "sha256-hJe9JAUZZY2fx4I6+pVg1BYwzZrUWCkqPvQUT2OQXDo=";
sha256 = "sha256-XR6HhMu5AN1vkR3YtDlogTN9/aEExFQtATyKUqWjyAM=";
};
cargoSha256 = "sha256-BChYzSnM9jnLioRhRDez6XOjJwGrU+giV4Ld3rp/57M=";
cargoSha256 = "sha256-U1ewV/t66jrFRMdu5ddPWyg08C2IGFr6rudPFRIkPsg=";
nativeBuildInputs = [ installShellFiles ];
@ -29,6 +29,8 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/dalance/procs";
changelog = "https://github.com/dalance/procs/raw/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ dalance Br1ght0ne SuperSandro2000 ];
maintainers = with maintainers; [ Br1ght0ne SuperSandro2000 ];
# thread 'main' panicked at 'Unable to find libclang: "couldn't find any valid shared libraries matching: ['libclang.dylib'], set the `LIBCLANG_PATH` environment variable to a path where one of these files can be found (invalid: [])"', /private/tmp/nix-build-procs-0.12.3.drv-0/procs-0.12.3-vendor.tar.gz/bindgen/src/lib.rs:2144:31
broken = stdenv.isDarwin;
};
}