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