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 { 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;
}; };
} }