uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
32
pkgs/os-specific/linux/rewritefs/default.nix
Normal file
32
pkgs/os-specific/linux/rewritefs/default.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue