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

33 lines
890 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, fuse, pcre }:
2016-03-03 16:37:33 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "rewritefs";
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 = [ pkg-config ];
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 lib; {
2016-03-03 16:37:33 +00:00
description = ''A FUSE filesystem intended to be used
like Apache mod_rewrite'';
homepage = "https://github.com/sloonz/rewritefs";
2016-03-03 16:37:33 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.linux;
};
}