tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
gitfs: add darwin build
midchildan
5 years ago
92cde6f0
fdc5e719
+7
-1
1 changed file
expand all
collapse all
unified
split
pkgs
tools
filesystems
gitfs
default.nix
+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
17
+
18
18
+
# NOTE: As of gitfs 0.5.2, The pygit2 release that upstream uses is a major
19
19
+
# version behind the one packaged in nixpkgs.
20
20
+
substituteInPlace gitfs/mounter.py --replace \
21
21
+
'from pygit2.remote import RemoteCallbacks' \
22
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
34
-
platforms = lib.platforms.linux;
40
40
+
platforms = lib.platforms.unix;
35
41
maintainers = [ lib.maintainers.robbinch ];
36
42
};
37
43
}