mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
twa: set meta.platforms to platforms.unix
This commit is contained in:
parent
82b5887cab
commit
9b08685e96
1 changed files with 6 additions and 4 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue