Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge #55988: treewide meta.platforms: linux -> unix

+72 -72
+1 -1
pkgs/applications/editors/emacs-modes/calfw/default.nix
··· 29 29 license = stdenv.lib.licenses.gpl3Plus; 30 30 31 31 maintainers = with stdenv.lib.maintainers; [ chaoflow ]; 32 - platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; 32 + platforms = stdenv.lib.platforms.unix; 33 33 }; 34 34 }
+1 -1
pkgs/applications/misc/autospotting/default.nix
··· 24 24 description = "Automatically convert your existing AutoScaling groups to up to 90% cheaper spot instances with minimal configuration changes"; 25 25 license = licenses.free; 26 26 maintainers = [ maintainers.costrouc ]; 27 - platforms = platforms.linux; 27 + platforms = platforms.unix; 28 28 }; 29 29 30 30 }
+1 -1
pkgs/applications/misc/cointop/default.nix
··· 24 24 The interface is inspired by htop and shortcut keys are inspired by vim. 25 25 ''; 26 26 homepage = https://cointop.sh; 27 - platforms = stdenv.lib.platforms.linux; # cannot test others 27 + platforms = stdenv.lib.platforms.unix; # cannot test others 28 28 maintainers = [ ]; 29 29 license = stdenv.lib.licenses.asl20; 30 30 };
+1 -1
pkgs/applications/networking/cluster/nomad/default.nix
··· 18 18 meta = with stdenv.lib; { 19 19 homepage = https://www.nomadproject.io/; 20 20 description = "A Distributed, Highly Available, Datacenter-Aware Scheduler"; 21 - platforms = platforms.linux; 21 + platforms = platforms.unix; 22 22 license = licenses.mpl20; 23 23 maintainers = with maintainers; [ rushmorem pradeepchhetri ]; 24 24 };
+1 -1
pkgs/applications/networking/cluster/openshift/default.nix
··· 83 83 license = licenses.asl20; 84 84 homepage = http://www.openshift.org; 85 85 maintainers = with maintainers; [offline bachp moretea]; 86 - platforms = platforms.linux; 86 + platforms = platforms.unix; 87 87 }; 88 88 }
+1 -1
pkgs/applications/networking/cluster/ssm-agent/default.nix
··· 24 24 description = "Agent to enable remote management of your Amazon EC2 instance configuration"; 25 25 homepage = "https://github.com/aws/amazon-ssm-agent"; 26 26 license = licenses.asl20; 27 - platforms = platforms.linux; 27 + platforms = platforms.unix; 28 28 maintainers = with maintainers; [ copumpkin ]; 29 29 }; 30 30 }
+1 -1
pkgs/applications/networking/drive/default.nix
··· 20 20 homepage = https://github.com/odeke-em/drive; 21 21 description = "Google Drive client for the commandline"; 22 22 license = licenses.asl20; 23 - platforms = platforms.linux; 23 + platforms = platforms.unix; 24 24 }; 25 25 }
+1 -1
pkgs/applications/networking/gdrive/default.nix
··· 17 17 meta = with stdenv.lib; { 18 18 homepage = https://github.com/prasmussen/gdrive; 19 19 description = "A command line utility for interacting with Google Drive"; 20 - platforms = platforms.linux; 20 + platforms = platforms.unix; 21 21 license = licenses.mit; 22 22 maintainers = [ maintainers.rzetterberg ]; 23 23 };
+1 -1
pkgs/applications/networking/instant-messengers/turses/default.nix
··· 36 36 description = "A Twitter client for the console"; 37 37 license = licenses.gpl3; 38 38 maintainers = with maintainers; [ garbas ]; 39 - platforms = platforms.linux; 39 + platforms = platforms.unix; 40 40 }; 41 41 }
+1 -1
pkgs/applications/office/qnotero/default.nix
··· 28 28 description = "Quick access to Zotero references"; 29 29 homepage = http://www.cogsci.nl/software/qnotero; 30 30 license = stdenv.lib.licenses.gpl2; 31 - platforms = stdenv.lib.platforms.linux; 31 + platforms = stdenv.lib.platforms.unix; 32 32 maintainers = [ stdenv.lib.maintainers.nico202 ]; 33 33 }; 34 34 }
+1 -1
pkgs/applications/virtualization/ecs-agent/default.nix
··· 19 19 description = "The agent that runs on AWS EC2 container instances and starts containers on behalf of Amazon ECS"; 20 20 homepage = "https://github.com/aws/amazon-ecs-agent"; 21 21 license = licenses.asl20; 22 - platforms = platforms.linux; 22 + platforms = platforms.unix; 23 23 maintainers = with maintainers; [ copumpkin ]; 24 24 }; 25 25 }
+1 -1
pkgs/development/python-modules/aafigure/default.nix
··· 26 26 homepage = https://launchpad.net/aafigure/; 27 27 license = licenses.bsd2; 28 28 maintainers = with maintainers; [ bjornfor ]; 29 - platforms = platforms.linux; 29 + platforms = platforms.unix; 30 30 }; 31 31 }
+1 -1
pkgs/development/python-modules/actdiag/default.nix
··· 26 26 description = "Generate activity-diagram image from spec-text file (similar to Graphviz)"; 27 27 homepage = http://blockdiag.com/; 28 28 license = licenses.asl20; 29 - platforms = platforms.linux; 29 + platforms = platforms.unix; 30 30 maintainers = with maintainers; [ bjornfor ]; 31 31 }; 32 32 }
+1 -1
pkgs/development/python-modules/altair/default.nix
··· 33 33 homepage = https://github.com/altair-viz/altair; 34 34 license = licenses.bsd3; 35 35 maintainers = with maintainers; [ teh ]; 36 - platforms = platforms.linux; 36 + platforms = platforms.unix; 37 37 }; 38 38 }
+1 -1
pkgs/development/python-modules/asn1ate/default.nix
··· 16 16 meta = with stdenv.lib; { 17 17 description = "Python library for translating ASN.1 into other forms"; 18 18 license = licenses.bsd3; 19 - platforms = platforms.linux; 19 + platforms = platforms.unix; 20 20 maintainers = with maintainers; [ leenaars ]; 21 21 }; 22 22 }
+1 -1
pkgs/development/python-modules/bitstring/default.nix
··· 14 14 description = "Module for binary data manipulation"; 15 15 homepage = "https://github.com/scott-griffiths/bitstring"; 16 16 license = licenses.mit; 17 - platforms = platforms.linux; 17 + platforms = platforms.unix; 18 18 maintainers = with maintainers; [ bjornfor ]; 19 19 }; 20 20 }
+1 -1
pkgs/development/python-modules/filebrowser_safe/default.nix
··· 34 34 downloadPage = https://pypi.python.org/pypi/filebrowser_safe/; 35 35 license = licenses.free; 36 36 maintainers = with maintainers; [ prikhi ]; 37 - platforms = platforms.linux; 37 + platforms = platforms.unix; 38 38 }; 39 39 40 40 }
+1 -1
pkgs/development/python-modules/grappelli_safe/default.nix
··· 28 28 downloadPage = http://pypi.python.org/pypi/grappelli_safe/; 29 29 license = licenses.free; 30 30 maintainers = with maintainers; [ prikhi ]; 31 - platforms = platforms.linux; 31 + platforms = platforms.unix; 32 32 }; 33 33 34 34 }
+1 -1
pkgs/development/python-modules/i3-py/default.nix
··· 19 19 description = "Tools for i3 users and developers"; 20 20 homepage = "https://github.com/ziberna/i3-py"; 21 21 license = licenses.gpl3; 22 - platforms = platforms.linux; 22 + platforms = platforms.unix; 23 23 }; 24 24 25 25 }
+1 -1
pkgs/development/python-modules/imread/default.nix
··· 24 24 homepage = https://imread.readthedocs.io/en/latest/; 25 25 maintainers = with maintainers; [ luispedro ]; 26 26 license = licenses.mit; 27 - platforms = platforms.linux; 27 + platforms = platforms.unix; 28 28 }; 29 29 30 30 }
+1 -1
pkgs/development/python-modules/koji/default.nix
··· 25 25 26 26 meta = { 27 27 maintainers = [ ]; 28 - platforms = stdenv.lib.platforms.linux; 28 + platforms = stdenv.lib.platforms.unix; 29 29 }; 30 30 }
+1 -1
pkgs/development/python-modules/libais/default.nix
··· 20 20 homepage = https://github.com/schwehr/libais; 21 21 description = "Library for decoding maritime Automatic Identification System messages"; 22 22 license = licenses.asl20; 23 - platforms = platforms.linux; # It currently fails to build on darwin 23 + platforms = platforms.unix; 24 24 }; 25 25 }
+1 -1
pkgs/development/python-modules/libsavitar/default.nix
··· 27 27 description = "C++ implementation of 3mf loading with SIP python bindings"; 28 28 homepage = https://github.com/Ultimaker/libSavitar; 29 29 license = licenses.lgpl3Plus; 30 - platforms = platforms.linux; 30 + platforms = platforms.unix; 31 31 maintainers = with maintainers; [ abbradar orivej ]; 32 32 }; 33 33 }
+1 -1
pkgs/development/python-modules/mahotas/default.nix
··· 28 28 homepage = http://mahotas.readthedocs.io/; 29 29 maintainers = with maintainers; [ luispedro ]; 30 30 license = licenses.mit; 31 - platforms = platforms.linux; 31 + platforms = platforms.unix; 32 32 }; 33 33 }
+1 -1
pkgs/development/python-modules/mezzanine/default.nix
··· 64 64 downloadPage = https://github.com/stephenmcd/mezzanine/releases; 65 65 license = licenses.free; 66 66 maintainers = with maintainers; [ prikhi ]; 67 - platforms = platforms.linux; 67 + platforms = platforms.unix; 68 68 }; 69 69 70 70 }
+1 -1
pkgs/development/python-modules/moretools/default.nix
··· 24 24 ''; 25 25 homepage = https://bitbucket.org/userzimmermann/python-moretools; 26 26 license = licenses.gpl3Plus; 27 - platforms = platforms.linux; 27 + platforms = platforms.unix; 28 28 }; 29 29 }
+1 -1
pkgs/development/python-modules/nwdiag/default.nix
··· 23 23 description = "Generate network-diagram image from spec-text file (similar to Graphviz)"; 24 24 homepage = http://blockdiag.com/; 25 25 license = licenses.asl20; 26 - platforms = platforms.linux; 26 + platforms = platforms.unix; 27 27 maintainers = with maintainers; [ bjornfor ]; 28 28 }; 29 29 }
+1 -1
pkgs/development/python-modules/oauth2/default.nix
··· 26 26 description = "Library for OAuth version 1.0"; 27 27 license = licenses.mit; 28 28 maintainers = with maintainers; [ garbas ]; 29 - platforms = platforms.linux; 29 + platforms = platforms.unix; 30 30 }; 31 31 32 32 }
+1 -1
pkgs/development/python-modules/openant/default.nix
··· 32 32 homepage = "https://github.com/Tigge/openant"; 33 33 description = "ANT and ANT-FS Python Library"; 34 34 license = licenses.mit; 35 - platforms = platforms.linux; 35 + platforms = platforms.unix; 36 36 }; 37 37 38 38 }
+1 -1
pkgs/development/python-modules/pg8000/default.nix
··· 20 20 homepage = https://github.com/mfenniak/pg8000; 21 21 description = "PostgreSQL interface library, for asyncio"; 22 22 maintainers = with maintainers; [ garbas domenkozar ]; 23 - platforms = platforms.linux; 23 + platforms = platforms.unix; 24 24 }; 25 25 26 26 }
+1 -1
pkgs/development/python-modules/plyvel/default.nix
··· 22 22 23 23 meta = with stdenv.lib; { 24 24 description = "Fast and feature-rich Python interface to LevelDB"; 25 - platforms = platforms.linux; 25 + platforms = platforms.unix; 26 26 homepage = https://github.com/wbolster/plyvel; 27 27 license = licenses.bsd3; 28 28 };
+1 -1
pkgs/development/python-modules/pychromecast/default.nix
··· 18 18 homepage = https://github.com/balloob/pychromecast; 19 19 license = licenses.mit; 20 20 maintainers = with maintainers; [ abbradar ]; 21 - platforms = platforms.linux; 21 + platforms = platforms.unix; 22 22 }; 23 23 }
+1 -1
pkgs/development/python-modules/pyicu/default.nix
··· 30 30 homepage = https://pypi.python.org/pypi/PyICU/; 31 31 description = "Python extension wrapping the ICU C++ API"; 32 32 license = licenses.mit; 33 - platforms = platforms.linux; # Maybe other non-darwin Unix 33 + platforms = platforms.unix; 34 34 maintainers = [ maintainers.rycee ]; 35 35 }; 36 36
+1 -1
pkgs/development/python-modules/pyinputevent/default.nix
··· 18 18 homepage = "https://github.com/ntzrmtthihu777/pyinputevent"; 19 19 description = "Python interface to the Input Subsystem's input_event and uinput"; 20 20 license = licenses.bsd3; 21 - platforms = platforms.linux; 21 + platforms = platforms.unix; 22 22 }; 23 23 24 24 }
+1 -1
pkgs/development/python-modules/pyodbc/default.nix
··· 18 18 description = "Python ODBC module to connect to almost any database"; 19 19 homepage = "https://github.com/mkleehammer/pyodbc"; 20 20 license = licenses.mit; 21 - platforms = platforms.linux; 21 + platforms = platforms.unix; 22 22 maintainers = with maintainers; [ bjornfor ]; 23 23 }; 24 24 }
+1 -1
pkgs/development/python-modules/pyroute2/default.nix
··· 17 17 homepage = https://github.com/svinota/pyroute2; 18 18 license = licenses.asl20; 19 19 maintainers = [maintainers.mic92]; 20 - platforms = platforms.linux; 20 + platforms = platforms.unix; 21 21 }; 22 22 }
+1 -1
pkgs/development/python-modules/pyrtlsdr/default.nix
··· 41 41 description = "Python wrapper for librtlsdr (a driver for Realtek RTL2832U based SDR's)"; 42 42 homepage = https://github.com/roger-/pyrtlsdr; 43 43 license = licenses.gpl3; 44 - platforms = platforms.linux; 44 + platforms = platforms.unix; 45 45 maintainers = with maintainers; [ bjornfor ]; 46 46 }; 47 47 }
+1 -1
pkgs/development/python-modules/rpy2/default.nix
··· 98 98 homepage = http://rpy.sourceforge.net/rpy2; 99 99 description = "Python interface to R"; 100 100 license = lib.licenses.gpl2Plus; 101 - platforms = lib.platforms.linux; 101 + platforms = lib.platforms.unix; 102 102 maintainers = with lib.maintainers; [ joelmo ]; 103 103 }; 104 104 }
+1 -1
pkgs/development/python-modules/scapy/default.nix
··· 50 50 description = "Powerful interactive network packet manipulation program"; 51 51 homepage = https://scapy.net/; 52 52 license = licenses.gpl2; 53 - platforms = platforms.linux; 53 + platforms = platforms.unix; 54 54 maintainers = with maintainers; [ primeos bjornfor ]; 55 55 }; 56 56 }
+1 -1
pkgs/development/python-modules/seqdiag/default.nix
··· 25 25 description = "Generate sequence-diagram image from spec-text file (similar to Graphviz)"; 26 26 homepage = http://blockdiag.com/; 27 27 license = licenses.asl20; 28 - platforms = platforms.linux; 28 + platforms = platforms.unix; 29 29 maintainers = with maintainers; [ bjornfor ]; 30 30 }; 31 31 }
+1 -1
pkgs/development/python-modules/toposort/default.nix
··· 16 16 description = "A topological sort algorithm"; 17 17 homepage = https://pypi.python.org/pypi/toposort/1.1; 18 18 maintainers = with maintainers; [ tstrobel ]; 19 - platforms = platforms.linux; 19 + platforms = platforms.unix; 20 20 license = licenses.asl20; 21 21 }; 22 22
+1 -1
pkgs/development/python-modules/vega/default.nix
··· 24 24 homepage = https://github.com/vega/ipyvega; 25 25 license = licenses.bsd3; 26 26 maintainers = with maintainers; [ teh ]; 27 - platforms = platforms.linux; 27 + platforms = platforms.unix; 28 28 }; 29 29 }
+1 -1
pkgs/development/python-modules/zetup/default.nix
··· 24 24 ''; 25 25 homepage = https://github.com/zimmermanncode/zetup; 26 26 license = licenses.gpl3Plus; 27 - platforms = platforms.linux; 27 + platforms = platforms.unix; 28 28 }; 29 29 }
+1 -1
pkgs/development/tools/analysis/egypt/default.nix
··· 27 27 ''; 28 28 homepage = http://www.gson.org/egypt/; 29 29 license = with licenses; [ artistic1 gpl1Plus ]; 30 - platforms = platforms.linux; 30 + platforms = platforms.unix; 31 31 }; 32 32 }
+1 -1
pkgs/development/tools/clog-cli/default.nix
··· 19 19 description = "Generate changelogs from local git metadata"; 20 20 homepage = https://github.com/clog-tool/clog-cli; 21 21 license = stdenv.lib.licenses.mit; 22 - platforms = stdenv.lib.platforms.linux; 22 + platforms = stdenv.lib.platforms.unix; 23 23 maintainers = [stdenv.lib.maintainers.nthorne]; 24 24 }; 25 25 }
+1 -1
pkgs/development/tools/database/timescaledb-parallel-copy/default.nix
··· 20 20 description = "Bulk, parallel insert of CSV records into PostgreSQL"; 21 21 homepage = http://github.com/timescale/timescaledb-parallel-copy; 22 22 license = licenses.asl20; 23 - platforms = platforms.linux; 23 + platforms = platforms.unix; 24 24 maintainers = with maintainers; [ thoughtpolice ]; 25 25 }; 26 26 }
+1 -1
pkgs/development/tools/deis/default.nix
··· 29 29 homepage = https://deis.io; 30 30 description = "A command line utility used to interact with the Deis open source PaaS."; 31 31 license = licenses.asl20; 32 - platforms = platforms.linux; 32 + platforms = platforms.unix; 33 33 maintainers = with maintainers; [ 34 34 jgeerds 35 35 ];
+1 -1
pkgs/development/tools/deisctl/default.nix
··· 23 23 homepage = https://deis.io; 24 24 description = "A command-line utility used to provision and operate a Deis cluster."; 25 25 license = licenses.asl20; 26 - platforms = platforms.linux; 26 + platforms = platforms.unix; 27 27 maintainers = with maintainers; [ 28 28 jgeerds 29 29 ];
+1 -1
pkgs/development/tools/go-protobuf/default.nix
··· 19 19 description = " Go bindings for protocol buffer"; 20 20 maintainers = with maintainers; [ lewo ]; 21 21 license = licenses.bsd3; 22 - platforms = platforms.linux; 22 + platforms = platforms.unix; 23 23 }; 24 24 }
+1 -1
pkgs/development/tools/leaps/default.nix
··· 20 20 homepage = https://github.com/jeffail/leaps/; 21 21 license = "MIT"; 22 22 maintainers = with stdenv.lib.maintainers; [ qknight ]; 23 - platforms = stdenv.lib.platforms.linux; 23 + platforms = stdenv.lib.platforms.unix; 24 24 }; 25 25 } 26 26
+1 -1
pkgs/development/tools/misc/circleci-cli/default.nix
··· 25 25 run jobs as if they were running on the hosted CirleCI application. 26 26 ''; 27 27 maintainers = with maintainers; [ synthetica ]; 28 - platforms = platforms.linux; 28 + platforms = platforms.unix; 29 29 license = licenses.mit; 30 30 homepage = https://circleci.com/; 31 31 };
+1 -1
pkgs/development/tools/misc/loccount/default.nix
··· 30 30 downloadPage="https://gitlab.com/esr/loccount/tree/master"; 31 31 license = licenses.bsd2; 32 32 maintainers = with maintainers; [ calvertvl ]; 33 - platforms = platforms.linux; 33 + platforms = platforms.unix; 34 34 }; 35 35 }
+1 -1
pkgs/servers/cloud-print-connector/default.nix
··· 51 51 maintainers = with maintainers; [ hodapp ]; 52 52 # TODO: Fix broken build on macOS. The GitHub presently lists the 53 53 # FreeBSD build as broken too, but this may change in the future. 54 - platforms = platforms.linux; 54 + platforms = platforms.unix; 55 55 }; 56 56 }
+1 -1
pkgs/servers/mail/spamassassin/default.nix
··· 35 35 homepage = http://spamassassin.apache.org/; 36 36 description = "Open-Source Spam Filter"; 37 37 license = stdenv.lib.licenses.asl20; 38 - platforms = stdenv.lib.platforms.linux; 38 + platforms = stdenv.lib.platforms.unix; 39 39 maintainers = with stdenv.lib.maintainers; [ peti qknight ]; 40 40 }; 41 41 }
+1 -1
pkgs/servers/monitoring/bosun/default.nix
··· 19 19 license = licenses.mit; 20 20 homepage = https://bosun.org; 21 21 maintainers = with maintainers; [ offline ]; 22 - platforms = platforms.linux; 22 + platforms = platforms.unix; 23 23 }; 24 24 }
+1 -1
pkgs/servers/monitoring/telegraf/default.nix
··· 28 28 license = licenses.mit; 29 29 homepage = https://www.influxdata.com/time-series-platform/telegraf/; 30 30 maintainers = with maintainers; [ mic92 roblabla ]; 31 - platforms = platforms.linux; 31 + platforms = platforms.unix; 32 32 }; 33 33 }
+1 -1
pkgs/servers/slimserver/default.nix
··· 99 99 # https://github.com/Logitech/slimserver/blob/public/7.9/License.txt 100 100 license = licenses.unfree; 101 101 maintainers = [ maintainers.phile314 ]; 102 - platforms = platforms.linux; 102 + platforms = platforms.unix; 103 103 }; 104 104 }
+1 -1
pkgs/servers/teleport/default.nix
··· 36 36 homepage = "https://gravitational.com/teleport/"; 37 37 license = stdenv.lib.licenses.asl20; 38 38 maintainers = [ stdenv.lib.maintainers.tomberek ]; 39 - platforms = stdenv.lib.platforms.linux; 39 + platforms = stdenv.lib.platforms.unix; 40 40 }; 41 41 }
+1 -1
pkgs/servers/trezord/default.nix
··· 21 21 homepage = https://trezor.io; 22 22 license = licenses.lgpl3; 23 23 maintainers = with maintainers; [ canndrew jb55 maintainers."1000101"]; 24 - platforms = platforms.linux; 24 + platforms = platforms.unix; 25 25 }; 26 26 }
+1 -1
pkgs/tools/filesystems/gcsfuse/default.nix
··· 16 16 17 17 meta = { 18 18 license = lib.licenses.asl20; 19 - platforms = lib.platforms.linux; 19 + platforms = lib.platforms.unix; 20 20 maintainers = []; 21 21 homepage = https://cloud.google.com/storage/docs/gcs-fuse; 22 22 description =
+1 -1
pkgs/tools/graphics/graph-easy/default.nix
··· 11 11 meta = with stdenv.lib; { 12 12 description = "Render/convert graphs in/from various formats"; 13 13 license = licenses.gpl1; 14 - platforms = platforms.linux; 14 + platforms = platforms.unix; 15 15 maintainers = [ maintainers.jensbin ]; 16 16 }; 17 17 }
+1 -1
pkgs/tools/misc/aptly/default.nix
··· 41 41 homepage = https://www.aptly.info; 42 42 description = "Debian repository management tool"; 43 43 license = licenses.mit; 44 - platforms = platforms.linux; 44 + platforms = platforms.unix; 45 45 maintainers = [ maintainers.montag451 ]; 46 46 }; 47 47 }
+1 -1
pkgs/tools/misc/fsql/default.nix
··· 18 18 homepage = https://github.com/kshvmdn/fsql; 19 19 license = licenses.mit; 20 20 maintainers = with maintainers; [ pSub ]; 21 - platforms = platforms.linux; 21 + platforms = platforms.unix; 22 22 inherit version; 23 23 }; 24 24
+1 -1
pkgs/tools/misc/heatseeker/default.nix
··· 24 24 homepage = https://github.com/rschmitt/heatseeker; 25 25 license = licenses.mit; 26 26 maintainers = [ maintainers.michaelpj ]; 27 - platforms = platforms.linux; 27 + platforms = platforms.unix; 28 28 }; 29 29 }
+1 -1
pkgs/tools/misc/xmonad-log/default.nix
··· 19 19 description = "xmonad DBus monitoring solution"; 20 20 homepage = https://github.com/xintron/xmonad-log; 21 21 license = licenses.mit; 22 - platforms = platforms.linux; 22 + platforms = platforms.unix; 23 23 maintainers = with maintainers; [ joko ]; 24 24 }; 25 25 }
+1 -1
pkgs/tools/networking/filegive/default.nix
··· 17 17 description = "Easy p2p file sending program"; 18 18 license = licenses.agpl3Plus; 19 19 maintainers = [ maintainers.viric ]; 20 - platforms = platforms.linux; 20 + platforms = platforms.unix; 21 21 }; 22 22 }
+1 -1
pkgs/tools/networking/ua/default.nix
··· 25 25 homepage = https://github.com/sloonz/ua; 26 26 license = stdenv.lib.licenses.isc; 27 27 description = "Universal Aggregator"; 28 - platforms = stdenv.lib.platforms.linux; 28 + platforms = stdenv.lib.platforms.unix; 29 29 maintainers = with stdenv.lib.maintainers; [ ttuegel ]; 30 30 }; 31 31 }
+1 -1
pkgs/tools/package-management/mynewt-newt/default.nix
··· 24 24 ''; 25 25 license = licenses.asl20; 26 26 maintainers = with maintainers; [ pjones ]; 27 - platforms = platforms.linux; 27 + platforms = platforms.unix; 28 28 }; 29 29 }
+1 -1
pkgs/tools/security/kbfs/default.nix
··· 21 21 meta = with stdenv.lib; { 22 22 homepage = https://www.keybase.io; 23 23 description = "The Keybase FS FUSE driver"; 24 - platforms = platforms.linux; 24 + platforms = platforms.unix; 25 25 maintainers = with maintainers; [ rvolosatovs bennofs np ]; 26 26 license = licenses.bsd3; 27 27 };
+1 -1
pkgs/tools/security/saml2aws/default.nix
··· 22 22 description = "CLI tool which enables you to login and retrieve AWS temporary credentials using a SAML IDP"; 23 23 homepage = https://github.com/Versent/saml2aws; 24 24 license = licenses.mit; 25 - platforms = stdenv.lib.platforms.linux; 25 + platforms = stdenv.lib.platforms.unix; 26 26 maintainers = [ stdenv.lib.maintainers.pmyjavec ]; 27 27 }; 28 28 }
+1 -1
pkgs/tools/system/awstats/default.nix
··· 56 56 description = "Real-time logfile analyzer to get advanced statistics"; 57 57 homepage = http://awstats.org; 58 58 license = licenses.gpl3Plus; 59 - platforms = platforms.linux; 59 + platforms = platforms.unix; 60 60 }; 61 61 } 62 62
+1 -1
pkgs/tools/system/systemd-journal2gelf/default.nix
··· 19 19 description = "Export entries from systemd's journal and send them to a graylog server using gelf"; 20 20 license = licenses.bsd2; 21 21 maintainers = with maintainers; [ fadenb fpletz globin ]; 22 - platforms = platforms.linux; 22 + platforms = platforms.unix; 23 23 }; 24 24 }