nixpkgs/pkgs/os-specific/linux/rewritefs/default.nix

33 lines
904 B
Nix
Raw Normal View History

2016-03-03 17:37:33 +01:00
{ stdenv, fetchFromGitHub, pkgconfig, fuse, pcre }:
stdenv.mkDerivation rec {
name = "rewritefs-${version}";
2017-11-05 15:52:37 +01:00
version = "2017-08-14";
2016-03-03 17:37:33 +01:00
src = fetchFromGitHub {
2017-11-05 15:52:37 +01:00
owner = "sloonz";
repo = "rewritefs";
rev = "33fb844d8e8ff441a3fc80d2715e8c64f8563d81";
2016-07-27 03:51:08 +02:00
sha256 = "15bcxprkxf0xqxljsqhb0jpi7p1vwqcb00sjs7nzrj7vh2p7mqla";
2016-03-03 17:37:33 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse pcre ];
2016-03-03 17:37:33 +01:00
prePatch = ''
2017-06-17 11:45:35 +02:00
# do not set sticky bit in nix store
substituteInPlace Makefile --replace 6755 0755
'';
2016-03-03 17:37:33 +01:00
preConfigure = "substituteInPlace Makefile --replace /usr/local $out";
meta = with stdenv.lib; {
description = ''A FUSE filesystem intended to be used
like Apache mod_rewrite'';
2018-01-13 04:09:07 +01:00
homepage = https://github.com/sloonz/rewritefs;
2016-03-03 17:37:33 +01:00
license = licenses.gpl2;
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.linux;
};
}