twa: set meta.platforms to platforms.unix

This commit is contained in:
Wael M. Nasreddine 2018-10-02 11:30:31 -07:00
parent 82b5887cab
commit 9b08685e96
No known key found for this signature in database
GPG key ID: 82AE0A31B33CEFCF

View file

@ -1,9 +1,10 @@
{ stdenv
, bash
, host
, curl
, fetchFromGitHub
, gawk
, host
, lib
, makeWrapper
, ncurses
, netcat
@ -34,10 +35,11 @@ stdenv.mkDerivation rec {
--prefix PATH : ${stdenv.lib.makeBinPath [ curl netcat ncurses host.dnsutils ]}
'';
meta = {
meta = with lib; {
description = "A tiny web auditor with strong opinions";
homepage = https://github.com/trailofbits/twa;
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ avaq ];
license = licenses.mit;
maintainers = with maintainers; [ avaq ];
platforms = platforms.unix;
};
}