mirror of
https://github.com/ihaveamac/ninfs.git
synced 2025-06-18 17:05:32 -04:00
nix: add meta, mark non-darwin as broken
This commit is contained in:
parent
9acf7a4987
commit
f699ad7131
10
ninfs.nix
10
ninfs.nix
@ -21,4 +21,14 @@ buildPythonApplication rec {
|
||||
makeWrapperArgs = lib.optional (!stdenv.isDarwin) [
|
||||
"--set FUSE_LIBRARY_PATH ${pkgs.fuse}/lib/libfuse.so.2"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "FUSE filesystem Python scripts for Nintendo console files";
|
||||
homepage = "https://github.com/ihaveamac/ninfs";
|
||||
license = licenses.mit;
|
||||
# until i figure out what's up with libfuse on linux
|
||||
platforms = platforms.unix;
|
||||
broken = !stdenv.isDarwin;
|
||||
mainProgram = "ninfs";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user