summary refs log blame commit diff
path: root/pkgs/os-specific/linux/rewritefs/default.nix
blob: e78d5f2d164c827a9ce5f1c14504585fb0f1dd06 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                          
 
                     
                      
                                  

                         

                         

                                                                    
    
 
                                     
                               
 
               
                                        


                                                  

                                                                        
                    

                                                         
                                                        




                                                
{ lib, stdenv, fetchFromGitHub, pkg-config, fuse3, pcre }:

stdenv.mkDerivation {
  pname = "rewritefs";
  version = "unstable-2021-10-03";

  src = fetchFromGitHub {
    owner  = "sloonz";
    repo   = "rewritefs";
    rev    = "3a56de8b5a2d44968b8bc3885c7d661d46367306";
    sha256 = "1w2rik0lhqm3wr68x51zs45gqfx79l7fi4p0sqznlfq7sz5s8xxn";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ fuse3 pcre ];

  prePatch = ''
    # do not set sticky bit in nix store
    substituteInPlace Makefile --replace 6755 0755
  '';

  preConfigure = "substituteInPlace Makefile --replace /usr/local $out";

  meta = with lib; {
    description = ''A FUSE filesystem intended to be used
      like Apache mod_rewrite'';
    homepage    = "https://github.com/sloonz/rewritefs";
    license     = licenses.gpl2;
    maintainers = with maintainers; [ rnhmjoj ];
    platforms   = platforms.linux;
  };
}