forked from mirrors/nixpkgs
commit
95a25b06c6
|
@ -1,5 +1,9 @@
|
||||||
{ stdenv, lib, fetchFromGitHub
|
{ stdenv
|
||||||
, parted, systemd, argp-standalone
|
, lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, parted
|
||||||
|
, systemd
|
||||||
|
, argp-standalone
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -14,20 +18,18 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
sed -i 's/-oroot -groot//' Makefile
|
sed -i 's/-oroot -groot//' Makefile
|
||||||
|
|
||||||
for f in f3write.h2w log-f3wr; do
|
for f in f3write.h2w log-f3wr; do
|
||||||
substituteInPlace $f \
|
substituteInPlace $f \
|
||||||
--replace '$(dirname $0)' $out/bin
|
--replace '$(dirname $0)' $out/bin
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = lib.optional stdenv.isLinux [ systemd parted ]
|
buildInputs = lib.optionals stdenv.isLinux [ systemd parted ]
|
||||||
++ lib.optional stdenv.isDarwin [ argp-standalone ];
|
++ lib.optionals stdenv.isDarwin [ argp-standalone ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
buildFlags = [
|
||||||
|
|
||||||
buildFlags = [
|
|
||||||
"all" # f3read, f3write
|
"all" # f3read, f3write
|
||||||
]
|
]
|
||||||
++ lib.optional stdenv.isLinux "extra"; # f3brew, f3fix, f3probe
|
++ lib.optional stdenv.isLinux "extra"; # f3brew, f3fix, f3probe
|
||||||
|
@ -48,8 +50,8 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Fight Flash Fraud";
|
description = "Fight Flash Fraud";
|
||||||
homepage = "http://oss.digirati.com.br/f3/";
|
homepage = "https://fight-flash-fraud.readthedocs.io/en/stable/";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ makefu ];
|
maintainers = with maintainers; [ makefu evils ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue