mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
commit
95a25b06c6
@ -1,5 +1,9 @@
|
||||
{ stdenv, lib, fetchFromGitHub
|
||||
, parted, systemd, argp-standalone
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, parted
|
||||
, systemd
|
||||
, argp-standalone
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -22,10 +26,8 @@ stdenv.mkDerivation rec {
|
||||
done
|
||||
'';
|
||||
|
||||
buildInputs = lib.optional stdenv.isLinux [ systemd parted ]
|
||||
++ lib.optional stdenv.isDarwin [ argp-standalone ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
buildInputs = lib.optionals stdenv.isLinux [ systemd parted ]
|
||||
++ lib.optionals stdenv.isDarwin [ argp-standalone ];
|
||||
|
||||
buildFlags = [
|
||||
"all" # f3read, f3write
|
||||
@ -48,8 +50,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fight Flash Fraud";
|
||||
homepage = "http://oss.digirati.com.br/f3/";
|
||||
homepage = "https://fight-flash-fraud.readthedocs.io/en/stable/";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ makefu ];
|
||||
maintainers = with maintainers; [ makefu evils ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user