twa: set meta.platforms to platforms.unix
This commit is contained in:
parent
82b5887cab
commit
9b08685e96
@ -1,9 +1,10 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, bash
|
, bash
|
||||||
, host
|
|
||||||
, curl
|
, curl
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, gawk
|
, gawk
|
||||||
|
, host
|
||||||
|
, lib
|
||||||
, makeWrapper
|
, makeWrapper
|
||||||
, ncurses
|
, ncurses
|
||||||
, netcat
|
, netcat
|
||||||
@ -34,10 +35,11 @@ stdenv.mkDerivation rec {
|
|||||||
--prefix PATH : ${stdenv.lib.makeBinPath [ curl netcat ncurses host.dnsutils ]}
|
--prefix PATH : ${stdenv.lib.makeBinPath [ curl netcat ncurses host.dnsutils ]}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "A tiny web auditor with strong opinions";
|
description = "A tiny web auditor with strong opinions";
|
||||||
homepage = https://github.com/trailofbits/twa;
|
homepage = https://github.com/trailofbits/twa;
|
||||||
license = stdenv.lib.licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with stdenv.lib.maintainers; [ avaq ];
|
maintainers = with maintainers; [ avaq ];
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user