envfs: 1.0.2 -> 1.0.3

Diff: https://github.com/Mic92/envfs/compare/1.0.2...1.0.3
This commit is contained in:
Jörg Thalheim 2023-12-29 16:12:56 +01:00
parent 93d39734d9
commit 4d96a0f96f

View File

@ -1,14 +1,14 @@
{ rustPlatform, lib, fetchFromGitHub, nixosTests }:
rustPlatform.buildRustPackage rec {
pname = "envfs";
version = "1.0.2";
version = "1.0.3";
src = fetchFromGitHub {
owner = "Mic92";
repo = "envfs";
rev = version;
hash = "sha256-MfKOfI21sRNEBX+v0Wto1YhzrPu3JI7Q4AU333utGpk=";
hash = "sha256-WbMqh/MzEMfZmKl/DNBGnzG3l8unFmAYbG6feSiMz+Y=";
};
cargoHash = "sha256-vMXmv8p839EPLCwX6So5ebgr5Z68AqdSaLiWqDoBAt4=";
cargoHash = "sha256-RoreNBZvTsVY87nbVibJBy4gsafFwAMctVncAhhiaP8=";
passthru.tests = {
envfs = nixosTests.envfs;
@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec {
ln -s envfs $out/bin/mount.fuse.envfs
'';
meta = with lib; {
description = "Fuse filesystem that returns symlinks to executables based on the PATH of the requesting process.";
description = "Fuse filesystem that returns symlinks to executables based on the PATH of the requesting process";
homepage = "https://github.com/Mic92/envfs";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];