lol

gitfs: add darwin build

+7 -1
+7 -1
pkgs/tools/filesystems/gitfs/default.nix
··· 14 14 patchPhase = '' 15 15 # requirement checks are unnecessary at runtime 16 16 echo > requirements.txt 17 + 18 + # NOTE: As of gitfs 0.5.2, The pygit2 release that upstream uses is a major 19 + # version behind the one packaged in nixpkgs. 20 + substituteInPlace gitfs/mounter.py --replace \ 21 + 'from pygit2.remote import RemoteCallbacks' \ 22 + 'from pygit2 import RemoteCallbacks' 17 23 ''; 18 24 19 25 checkInputs = with python3Packages; [ pytest pytestcov mock ]; ··· 31 37 ''; 32 38 homepage = "https://github.com/PressLabs/gitfs"; 33 39 license = lib.licenses.asl20; 34 - platforms = lib.platforms.linux; 40 + platforms = lib.platforms.unix; 35 41 maintainers = [ lib.maintainers.robbinch ]; 36 42 }; 37 43 }