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

33 lines
904 B
Nix
Raw Normal View History

2016-03-03 16:37:33 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, fuse, pcre }:
stdenv.mkDerivation rec {
name = "rewritefs-${version}";
2017-11-05 14:52:37 +00:00
version = "2017-08-14";
2016-03-03 16:37:33 +00:00
src = fetchFromGitHub {
2017-11-05 14:52:37 +00:00
owner = "sloonz";
repo = "rewritefs";
rev = "33fb844d8e8ff441a3fc80d2715e8c64f8563d81";
2016-07-27 01:51:08 +00:00
sha256 = "15bcxprkxf0xqxljsqhb0jpi7p1vwqcb00sjs7nzrj7vh2p7mqla";
2016-03-03 16:37:33 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse pcre ];
2016-03-03 16:37:33 +00:00
prePatch = ''
2017-06-17 09:45:35 +00:00
# do not set sticky bit in nix store
substituteInPlace Makefile --replace 6755 0755
'';
2016-03-03 16:37:33 +00: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 03:09:07 +00:00
homepage = https://github.com/sloonz/rewritefs;
2016-03-03 16:37:33 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.linux;
};
}