summary refs log tree commit diff
path: root/pkgs/tools/filesystems/gitfs/default.nix
blob: cd79f5db85b34b1f77c5fd57353c7d1d1b9ee6f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchFromGitHub, python, buildPythonPackage, pythonPackages }:

buildPythonPackage rec {
  name = "gitfs-0.2.5";

  src = fetchFromGitHub {
    owner = "PressLabs";
    repo = "gitfs";
    rev = "495c6c52ec3573294ba7b8426ed794eb466cbb82";
    sha256 = "04yh6b5ivbviqy5k2768ag75cd5kr8k70ar0d801yvc8hnijvphk";
  };

  patchPhase = ''
    # requirement checks are unnecessary at runtime
    echo > requirements.txt
  '';

  propagatedBuildInputs = with pythonPackages; [ atomiclong fusepy pygit2 ];

  meta = {
    description = "A FUSE filesystem that fully integrates with git";
    longDescription = ''
      A git remote repository's branch can be mounted locally,
      and any subsequent changes made to the files will be
      automatically committed to the remote.
    '';
    homepage = https://github.com/PressLabs/gitfs;
    license = stdenv.lib.licenses.asl20;
    platforms = stdenv.lib.platforms.linux;
    maintainers = [ stdenv.lib.maintainers.robbinch ];
  };
}