mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
29 lines
820 B
Nix
29 lines
820 B
Nix
{ rustPlatform, lib, fetchFromGitHub, nixosTests }:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "envfs";
|
|
version = "1.0.0";
|
|
src = fetchFromGitHub {
|
|
owner = "Mic92";
|
|
repo = "envfs";
|
|
rev = version;
|
|
hash = "sha256-aF8V1LwPGifFWoVxM0ydOnTX1pDVJ6HXevTxADJ/rsw=";
|
|
};
|
|
cargoHash = "sha256-kw56tbe5zvWY5bI//dUqR1Rlumz8kOG4HeXiyEyL0I0=";
|
|
|
|
passthru.tests = {
|
|
envfs = nixosTests.envfs;
|
|
};
|
|
|
|
postInstall = ''
|
|
ln -s envfs $out/bin/mount.envfs
|
|
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.";
|
|
homepage = "https://github.com/Mic92/envfs";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mic92 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|