mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
Merge pull request #8047 from nckx/master
Don't use "with licenses;" for single licences
This commit is contained in:
commit
99273a6716
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
ALSA or JACK as sound input library.
|
||||
'';
|
||||
homepage = http://home.gna.org/fmit/index.html;
|
||||
license = with licenses; gpl3Plus;
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
used to estimate the musical key of many different audio formats.
|
||||
'';
|
||||
homepage = https://github.com/EvanPurkhiser/keyfinder-cli;
|
||||
license = with licenses; gpl3Plus;
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
efficient workflow tool.
|
||||
'';
|
||||
homepage = http://www.ibrahimshaath.co.uk/keyfinder/;
|
||||
license = with licenses; gpl3Plus;
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -46,7 +46,7 @@ in stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "A hackable text editor for the 21st Century";
|
||||
homepage = https://atom.io/;
|
||||
license = [ licenses.mit ];
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.offline ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
a special case of text editing.
|
||||
'';
|
||||
homepage = http://emacs-jabber.sourceforge.net/;
|
||||
license = with licenses; gpl2Plus;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ astsmtl ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
|
@ -26,6 +26,6 @@ trivialBuild rec {
|
||||
meta = with lib; {
|
||||
description = "An analog indicator of the position in the buffer";
|
||||
homepage = https://github.com/TeMPOraL/nyan-mode/;
|
||||
license = with licenses; gpl3Plus;
|
||||
license = licenses.gpl3Plus;
|
||||
};
|
||||
}
|
||||
|
@ -53,6 +53,6 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "the next generation code editor";
|
||||
homepage = http://www.lighttable.com/;
|
||||
license = [ licenses.gpl3 ];
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
}
|
||||
|
@ -190,7 +190,7 @@ composableDerivation {
|
||||
meta = with stdenv.lib; {
|
||||
description = "The most popular clone of the VI editor";
|
||||
homepage = http://www.vim.org;
|
||||
license = with licenses; [ vim ];
|
||||
license = licenses.vim;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "The most popular clone of the VI editor";
|
||||
homepage = http://www.vim.org;
|
||||
license = with licenses; [ vim ];
|
||||
license = licenses.vim;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
@ -87,7 +87,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Vim - the text editor - for Mac OS X";
|
||||
homepage = https://github.com/b4winckler/macvim;
|
||||
license = with licenses; [ vim ];
|
||||
license = licenses.vim;
|
||||
maintainers = with maintainers; [ cstrahan ];
|
||||
platforms = platforms.darwin;
|
||||
};
|
||||
|
@ -118,7 +118,7 @@ composableDerivation {
|
||||
meta = with stdenv.lib; {
|
||||
description = "The most popular clone of the VI editor (Qt GUI fork)";
|
||||
homepage = https://bitbucket.org/equalsraf/vim-qt/wiki/Home;
|
||||
license = with licenses; [ vim ];
|
||||
license = licenses.vim;
|
||||
maintainers = with maintainers; [ smironov ttuegel ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://apitrace.github.io;
|
||||
description = "Tools to trace OpenGL, OpenGL ES, Direct3D, and DirectDraw APIs";
|
||||
license = with licenses; mit;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
interface is well tested.
|
||||
'';
|
||||
homepage = https://launchpad.net/simple-scan;
|
||||
license = with licenses; gpl3Plus;
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
# Quicker to unpack locally than load Hydra
|
||||
hydraPlatforms = [];
|
||||
maintainers = with stdenv.lib.maintainers; [raskin];
|
||||
license = with stdenv.lib.licenses; lgpl21Plus;
|
||||
license = stdenv.lib.licenses.lgpl21Plus;
|
||||
description = "GraphViz graph viewer/navigator";
|
||||
};
|
||||
}
|
||||
|
@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://eaglemode.sourceforge.net";
|
||||
description = "Zoomable User Interface";
|
||||
license = with licenses; gpl3;
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ viric ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
|
@ -176,7 +176,7 @@ a.composableDerivation.composableDerivation {} (fix: {
|
||||
meta = {
|
||||
description = "free Geographic Information System (GIS) software used for geospatial data management and analysis, image processing, graphics/maps production, spatial modeling, and visualization";
|
||||
homepage = http://grass.itc.it/index.php;
|
||||
license = [ "GPL" ];
|
||||
license = "GPL";
|
||||
broken = true;
|
||||
};
|
||||
|
||||
|
@ -13,7 +13,7 @@ bundlerEnv {
|
||||
meta = with lib; {
|
||||
description = "Simple, blog aware, static site generator";
|
||||
homepage = http://jekyllrb.com/;
|
||||
license = with licenses; mit;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ pesterhazy ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
detects a new entry it'll emit only that new entry.
|
||||
'';
|
||||
homepage = http://www.vanheusden.com/rsstail/;
|
||||
license = with licenses; gpl2Plus;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://www.creytiv.com/baresip.html";
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
maintainers = with stdenv.lib.maintainers; [raskin];
|
||||
license = with stdenv.lib.licenses; bsd3;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
inherit version;
|
||||
downloadPage = "http://www.creytiv.com/pub/";
|
||||
updateWalker = true;
|
||||
|
@ -12,7 +12,7 @@ bundlerEnv {
|
||||
meta = with lib; {
|
||||
description = "A curses threads-with-tags style email client";
|
||||
homepage = http://supmua.org;
|
||||
license = with licenses; gpl2;
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ cstrahan lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Graphical NoMachine NX3 remote desktop client";
|
||||
homepage = http://x2go.org/;
|
||||
license = with licenses; gpl2;
|
||||
license = licenses.gpl2;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -25,7 +25,7 @@ buildGoPackage rec {
|
||||
meta = {
|
||||
homepage = http://syncthing.net/;
|
||||
description = "Replaces Dropbox and BitTorrent Sync with something open, trustworthy and decentralized";
|
||||
license = with lib.licenses; mit;
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ matejc ];
|
||||
platforms = with lib.platforms; unix;
|
||||
};
|
||||
|
@ -11,6 +11,6 @@ stdenv.mkDerivation rec {
|
||||
description = ''Lambda calculus interpreter'';
|
||||
maintainers = with stdenv.lib.maintainers; [raskin];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
license = with stdenv.lib.licenses; gpl3;
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
};
|
||||
}
|
||||
|
@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
|
||||
description = ''Simple Theorem Prover'';
|
||||
maintainers = with stdenv.lib.maintainers; [mornfall];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
license = with stdenv.lib.licenses; mit;
|
||||
license = stdenv.lib.licenses.mit;
|
||||
};
|
||||
}
|
||||
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Computer algebra system for high-performance number theory computations";
|
||||
homepage = "http://pari.math.u-bordeaux.fr/";
|
||||
license = with licenses; gpl2Plus;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ ertes raskin ];
|
||||
platforms = platforms.linux;
|
||||
|
||||
|
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://speedcrunch.digitalfanatics.org";
|
||||
license = with licenses; gpl2Plus;
|
||||
license = licenses.gpl2Plus;
|
||||
description = "A fast power user calculator";
|
||||
longDescription = ''
|
||||
SpeedCrunch is a fast, high precision and powerful desktop calculator.
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://www.gromacs.org";
|
||||
license = with licenses; gpl2;
|
||||
license = licenses.gpl2;
|
||||
description = "Molecular dynamics software package";
|
||||
longDescription = ''
|
||||
GROMACS is a versatile package to perform molecular dynamics,
|
||||
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
homepage = http://www.catb.org/~esr/src/;
|
||||
|
||||
license = [ stdenv.lib.licenses.bsd3 ];
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.shlevy ];
|
||||
|
||||
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
videos to MPEG4, MP3 or other formats in just one easy step.
|
||||
'';
|
||||
homepage = http://clipgrab.org/;
|
||||
license = with licenses; gpl3Plus;
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -21,6 +21,6 @@ stdenv.mkDerivation rec{
|
||||
meta = with stdenv.lib; {
|
||||
description = "Tools for generating DVD files to be played on standalone DVD players";
|
||||
homepage = http://dvdauthor.sourceforge.net/;
|
||||
license = with licenses; gpl2;
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
||||
|
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "VirtualBox client with remote management";
|
||||
homepage = http://remotebox.knobgoblin.org.uk/;
|
||||
license = with licenses; gpl2Plus;
|
||||
license = licenses.gpl2Plus;
|
||||
longDescription = ''
|
||||
VirtualBox is traditionally considered to be a virtualization solution
|
||||
aimed at the desktop. While it is certainly possible to install
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Highly configurable, dynamic window manager for X";
|
||||
homepage = http://awesome.naquadah.org/;
|
||||
license = with licenses; gpl2Plus;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://tools.suckless.org/tabbed;
|
||||
description = "Simple generic tabbed fronted to xembed aware applications";
|
||||
license = with licenses; mit;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ viric ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
|
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://vwm.sourceforge.net/;
|
||||
description = "Dynamic window manager for the console";
|
||||
license = with licenses; gpl2Plus;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ viric ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
|
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||
app), available for Linux and Windows.
|
||||
'';
|
||||
homepage = "http://zealdocs.org/";
|
||||
license = with stdenv.lib.licenses; [ gpl3 ];
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ skeidel ];
|
||||
};
|
||||
|
@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
|
||||
EGA/VGA-bold for 8x14 and 8x16.
|
||||
'';
|
||||
homepage = http://www.is-vn.bg/hamster/;
|
||||
license = with licenses; [ gpl2Plus ];
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ astsmtl ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
|
@ -30,7 +30,7 @@ stdenv.mkDerivation {
|
||||
inherit version;
|
||||
description = "GeoLite Legacy IP geolocation databases";
|
||||
homepage = https://geolite.maxmind.com/download/geoip;
|
||||
license = with licenses; cc-by-sa-30;
|
||||
license = licenses.cc-by-sa-30;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -26,7 +26,7 @@ in
|
||||
meta = with stdenv.lib; {
|
||||
description = "A repository of data files describing media player capabilities";
|
||||
homepage = "http://www.freedesktop.org/wiki/Software/media-player-info/";
|
||||
license = with licenses; [ bsd3 ];
|
||||
license = licenses.bsd3;
|
||||
maintainer = with maintainers; [ ttuegel ];
|
||||
};
|
||||
}
|
||||
|
@ -19,7 +19,7 @@ in stdenv.mkDerivation rec {
|
||||
description = "Gnome docking library";
|
||||
homepage = https://developer.gnome.org/gdl/;
|
||||
maintainers = [ maintainers.lethalman ];
|
||||
license = [ licenses.gpl2 ];
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -35,6 +35,6 @@ stdenv.mkDerivation rec {
|
||||
homepage = https://github.com/kripken/emscripten;
|
||||
description = "An LLVM-to-JavaScript Compiler";
|
||||
maintainers = with maintainers; [ bosu ];
|
||||
license = with licenses; ncsa;
|
||||
license = licenses.ncsa;
|
||||
};
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
homepage = https://github.com/zsaleeba/picoc;
|
||||
downloadPage = https://code.google.com/p/picoc/downloads/list;
|
||||
license = with licenses; bsd3;
|
||||
license = licenses.bsd3;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -102,7 +102,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
license = with licenses; [ ruby ];
|
||||
license = licenses.ruby;
|
||||
homepage = "http://www.ruby-lang.org/en/";
|
||||
description = "The Ruby language";
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
inherit version;
|
||||
description = "Brokken's Own Base Classes And Templates";
|
||||
downloadPage = http://sourceforge.net/projects/bobcat/files/;
|
||||
license = with licenses; gpl3;
|
||||
license = licenses.gpl3;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -24,7 +24,7 @@ stdenv.mkDerivation {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://www.highscore.de/boost/process0.5/";
|
||||
description = "Library to manage system processes";
|
||||
license = with licenses; boost;
|
||||
license = licenses.boost;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
description = "the Git linkable library";
|
||||
homepage = http://libgit2.github.com/;
|
||||
license = with stdenv.lib.licenses; gpl2;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = with stdenv.lib.platforms; all;
|
||||
};
|
||||
}
|
||||
|
@ -63,7 +63,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
# http://www.open-mpi.org/projects/hwloc/license.php
|
||||
license = with licenses; bsd3;
|
||||
license = licenses.bsd3;
|
||||
|
||||
homepage = http://www.open-mpi.org/projects/hwloc/;
|
||||
|
||||
|
@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = https://github.com/open-source-parsers/jsoncpp;
|
||||
description = "A simple API to manipulate JSON data in C++";
|
||||
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
|
||||
license = with stdenv.lib.licenses; [ mit ];
|
||||
license = stdenv.lib.licenses.mit;
|
||||
branch = "1.6";
|
||||
};
|
||||
}
|
||||
|
@ -113,7 +113,7 @@ let
|
||||
meta =
|
||||
let inherit (builtins.parseDrvName super.extra-cmake-modules.name) version; in
|
||||
{
|
||||
license = with stdenv.lib.licenses; [ bsd2 ];
|
||||
license = stdenv.lib.licenses.bsd2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
|
||||
homepage = "http://www.kde.org";
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Emulate a Cisco-style telnet command-line interface";
|
||||
homepage = http://sites.dparrish.com/libcli;
|
||||
license = with licenses; lgpl21Plus;
|
||||
license = licenses.lgpl21Plus;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Musical key detection for digital audio (C++ library)";
|
||||
homepage = http://www.ibrahimshaath.co.uk/keyfinder/;
|
||||
license = with licenses; gpl3Plus;
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -21,6 +21,6 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://libpseudo.sourceforge.net/;
|
||||
description = "Simple, thread-safe messaging between threads";
|
||||
license = with licenses; gpl2Plus;
|
||||
license = licenses.gpl2Plus;
|
||||
};
|
||||
}
|
||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
the domain in a user interface or sorting domain lists by site.
|
||||
'';
|
||||
homepage = http://rockdaboot.github.io/libpsl/;
|
||||
license = with licenses; mit;
|
||||
license = licenses.mit;
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://www.creytiv.com/re.html";
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
maintainers = with stdenv.lib.maintainers; [raskin];
|
||||
license = with stdenv.lib.licenses; bsd3;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
inherit version;
|
||||
downloadPage = "http://www.creytiv.com/pub/";
|
||||
updateWalker = true;
|
||||
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://www.creytiv.com/rem.html";
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
maintainers = with stdenv.lib.maintainers; [raskin];
|
||||
license = with stdenv.lib.licenses; bsd3;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
inherit version;
|
||||
downloadPage = "http://www.creytiv.com/pub/";
|
||||
updateWalker = true;
|
||||
|
@ -16,6 +16,6 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Terminal keypress reading library";
|
||||
license = with licenses; [ mit ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
|
@ -21,6 +21,6 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://libviper.sourceforge.net/;
|
||||
description = "Simple window creation and management facilities for the console";
|
||||
license = with licenses; gpl2Plus;
|
||||
license = licenses.gpl2Plus;
|
||||
};
|
||||
}
|
||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://libvterm.sourceforge.net/;
|
||||
description = "Terminal emulator library to mimic both vt100 and rxvt";
|
||||
license = with licenses; gpl2Plus;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
||||
meta = with stdenv.lib; {
|
||||
description = "NX compression library";
|
||||
homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs";
|
||||
license = with licenses; gpl2;
|
||||
license = licenses.gpl2;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -20,6 +20,6 @@ stdenv.mkDerivation rec {
|
||||
description = "Qt 5 Cryptographic Architecture";
|
||||
homepage = http://delta.affinix.com/qca;
|
||||
maintainers = with maintainers; [ ttuegel ];
|
||||
license = with licenses; [ lgpl21Plus ];
|
||||
license = licenses.lgpl21Plus;
|
||||
};
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
description = "A QML port of qtermwidget";
|
||||
homepage = "https://github.com/Swordifish90/qmltermwidget";
|
||||
license = with stdenv.lib.licenses; [ gpl2 ];
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ skeidel ];
|
||||
};
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
platform that supports both FreeType and the OpenGL API.
|
||||
'';
|
||||
homepage = http://quesoglc.sourceforge.net/;
|
||||
license = with licenses; [ lgpl21Plus ];
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ astsmtl ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
description = "RabbitMQ C AMQP client library";
|
||||
homepage = https://github.com/alanxz/rabbitmq-c;
|
||||
license = with stdenv.lib.licenses; mit;
|
||||
license = stdenv.lib.licenses.mit;
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
homepage = https://code.google.com/p/re2/;
|
||||
description = "An efficient, principled regular expression library";
|
||||
license = with stdenv.lib.licenses; bsd3;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
platforms = with stdenv.lib.platforms; all;
|
||||
};
|
||||
}
|
||||
|
@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
|
||||
inherit version;
|
||||
description = "Linear Algebra PACKage";
|
||||
homepage = "http://www.netlib.org/lapack/";
|
||||
license = with licenses; bsd3;
|
||||
license = licenses.bsd3;
|
||||
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.simons ];
|
||||
|
@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
|
||||
inherit version;
|
||||
description = "Linear Algebra PACKage";
|
||||
homepage = "http://www.netlib.org/lapack/";
|
||||
license = with licenses; bsd3;
|
||||
license = licenses.bsd3;
|
||||
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.simons ];
|
||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://www.creytiv.com/baresip.html";
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
maintainers = with stdenv.lib.maintainers; [raskin];
|
||||
license = with stdenv.lib.licenses; gpl2;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
downloadPage = "http://www.soft-switch.org/downloads/spandsp/";
|
||||
inherit version;
|
||||
updateWalker = true;
|
||||
|
@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "A very basic terminfo library";
|
||||
license = with licenses; [ lgpl3Plus ];
|
||||
license = licenses.lgpl3Plus;
|
||||
};
|
||||
}
|
||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
homepage = http://alloy.mit.edu/;
|
||||
downloadPage = http://alloy.mit.edu/alloy/download.html;
|
||||
license = with licenses; mit;
|
||||
license = licenses.mit;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
application of this sort.
|
||||
'';
|
||||
homepage = http://coan2.sourceforge.net/;
|
||||
license = with licenses; bsd3;
|
||||
license = licenses.bsd3;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
replacing #includes with forward-declares when possible.
|
||||
'';
|
||||
homepage = http://include-what-you-use.com;
|
||||
license = with licenses; bsd3;
|
||||
license = licenses.bsd3;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -42,7 +42,7 @@ in stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Cross platform desktop application shell";
|
||||
homepage = https://github.com/atom/atom-shell;
|
||||
license = [ licenses.mit ];
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.fluffynukeit ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
|
@ -13,7 +13,7 @@ bundlerEnv {
|
||||
meta = with lib; {
|
||||
description = "A streamlined development and deployment workflow for Chef platform";
|
||||
homepage = https://downloads.chef.io/chef-dk/;
|
||||
license = with licenses; asl20;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ offline ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
entirely in Java 6.
|
||||
'';
|
||||
homepage = http://www.benf.org/other/cfr/;
|
||||
license = with licenses; mit;
|
||||
license = licenses.mit;
|
||||
platforms = with platforms; all;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -49,7 +49,7 @@ stdenv.mkDerivation {
|
||||
description = "Compiler cache for fast recompilation of C/C++ code";
|
||||
homepage = http://ccache.samba.org/;
|
||||
downloadPage = https://ccache.samba.org/download.html;
|
||||
license = with licenses; gpl3Plus;
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
};
|
||||
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
homepage = http://flexcpp.sourceforge.net/;
|
||||
downloadPage = http://sourceforge.net/projects/flexcpp/files/;
|
||||
license = with licenses; gpl3;
|
||||
license = licenses.gpl3;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "A secure tunneling app for executing tests securely when testing behind firewalls";
|
||||
license = with licenses; unfree;
|
||||
license = licenses.unfree;
|
||||
homepage = https://docs.saucelabs.com/reference/sauce-connect/;
|
||||
maintainers = with maintainers; [offline];
|
||||
platforms = with platforms; platforms.linux;
|
||||
|
@ -40,7 +40,7 @@ in stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Chromium-based cross-platform / cross-language application framework";
|
||||
homepage = https://github.com/breach/thrust;
|
||||
license = [ licenses.mit ];
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.osener ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
|
@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
homepage = http://red.planetarena.org;
|
||||
# Engine is under GPLv2, everything else is under
|
||||
license = with licenses; unfreeRedistributable;
|
||||
license = licenses.unfreeRedistributable;
|
||||
maintainers = with maintainers; [ astsmtl ];
|
||||
platforms = platforms.linux;
|
||||
hydraPlatforms = [];
|
||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = ''A blobby volleyball game'';
|
||||
license = with stdenv.lib.licenses; bsd3;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
maintainers = with stdenv.lib.maintainers; [raskin];
|
||||
homepage = "http://blobby.sourceforge.net/";
|
||||
|
@ -63,7 +63,7 @@ in stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
inherit version;
|
||||
description = "Enhanched port of Duke Nukem 3D for various platforms";
|
||||
license = with licenses; gpl2Plus;
|
||||
license = licenses.gpl2Plus;
|
||||
homepage = http://eduke32.com;
|
||||
maintainers = with maintainers; [ nckx sander ];
|
||||
};
|
||||
|
@ -66,7 +66,7 @@ stdenv.mkDerivation rec {
|
||||
battle (or at least blow to bits in aesthetically pleasing ways).
|
||||
'';
|
||||
homepage = http://www.positech.co.uk/gratuitousspacebattles/index.html;
|
||||
license = with licenses; unfree;
|
||||
license = licenses.unfree;
|
||||
maintainers = with maintainers; [ jcumming ];
|
||||
platforms = [ "x86_64-linux" "i686-linux" ] ;
|
||||
};
|
||||
|
@ -57,7 +57,7 @@ stdenv.mkDerivation rec {
|
||||
realism". This results in a very unique, enjoyable and addictive game.
|
||||
'';
|
||||
homepage = http://www.urbanterror.net;
|
||||
license = with licenses; unfreeRedistributable;
|
||||
license = licenses.unfreeRedistributable;
|
||||
maintainers = with maintainers; [ astsmtl ];
|
||||
platforms = platforms.linux;
|
||||
hydraPlatforms = [];
|
||||
|
@ -76,7 +76,7 @@ stdenv.mkDerivation rec {
|
||||
to life, and all the consequences that ensue.
|
||||
'';
|
||||
homepage = http://www.strangeloopgames.com;
|
||||
license = with licenses; unfree;
|
||||
license = licenses.unfree;
|
||||
maintainers = with maintainers; [ jcumming ];
|
||||
};
|
||||
|
||||
|
@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
homepage = http://www.warsow.net;
|
||||
# Engine is under GPLv2, everything else is under
|
||||
license = with licenses; unfreeRedistributable;
|
||||
license = licenses.unfreeRedistributable;
|
||||
maintainers = with maintainers; [ astsmtl ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
|
@ -75,7 +75,7 @@ stdenv.mkDerivation rec {
|
||||
game, or that they are extremely delicious.
|
||||
'';
|
||||
homepage = http://worldofgoo.com;
|
||||
license = with licenses; unfree;
|
||||
license = licenses.unfree;
|
||||
maintainers = with maintainers; [ jcumming ];
|
||||
};
|
||||
|
||||
|
@ -70,7 +70,7 @@ stdenv.mkDerivation rec {
|
||||
aims to become the best possible open-source FPS of its kind.
|
||||
'';
|
||||
homepage = http://www.xonotic.org;
|
||||
license = with stdenv.lib.licenses; gpl2Plus;
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
hydraPlatforms = [];
|
||||
|
@ -540,7 +540,7 @@ rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Analytics about your programming";
|
||||
homepage = https://wakatime.com;
|
||||
license = with licenses; bsd3;
|
||||
license = licenses.bsd3;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
inherit version;
|
||||
description = "Report system-wide file access events";
|
||||
homepage = https://launchpad.net/fatrace/;
|
||||
license = with licenses; gpl3Plus;
|
||||
license = licenses.gpl3Plus;
|
||||
longDescription = ''
|
||||
fatrace reports file access events from all running processes.
|
||||
Its main purpose is to find processes which keep waking up the disk
|
||||
|
@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||
the internal hard drive and park its heads on the ramp when critical
|
||||
situations are anticipated. This has no effect on SSD devices!
|
||||
'';
|
||||
license = with licenses; gpl2;
|
||||
license = licenses.gpl2;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Show progress of open files and file systems";
|
||||
homepage = https://code.google.com/p/ftop/;
|
||||
license = with licenses; gpl3Plus;
|
||||
license = licenses.gpl3Plus;
|
||||
longDescription = ''
|
||||
Ftop is to files what top is to processes. The progress of all open files
|
||||
and file systems can be monitored. If run as a regular user, the set of
|
||||
|
@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
|
||||
- Customizable multi-threaded caching
|
||||
'';
|
||||
homepage = http://seasonofcode.com/pages/jfbview.html;
|
||||
license = with licenses; asl20;
|
||||
license = licenses.asl20;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -24,7 +24,7 @@ stdenv.mkDerivation {
|
||||
inherit version;
|
||||
description = "Log machine checks (memory, IO, and CPU hardware errors)";
|
||||
homepage = http://mcelog.org/;
|
||||
license = with licenses; gpl2;
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
}
|
||||
|
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
homepage = http://www.linux-phc.org/;
|
||||
downloadPage = "http://www.linux-phc.org/forum/viewtopic.php?f=7&t=267";
|
||||
license = with licenses; gpl2;
|
||||
license = licenses.gpl2;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
@ -11,7 +11,7 @@ stdenv.mkDerivation {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://sg.danny.cz/sg/sdparm.html;
|
||||
description = "A utility to access SCSI device parameters";
|
||||
license = with licenses; bsd3;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
}
|
||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Flexible dictionary server and client implementing RFC 2229";
|
||||
homepage = http://www.gnu.org/software/dico/;
|
||||
license = with licenses; gpl3Plus;
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
meta = with lib; {
|
||||
description = "A monitoring framework that aims to be simple, malleable, and scalable";
|
||||
homepage = http://sensuapp.org/;
|
||||
license = with licenses; mit;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ theuni ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = http://cassandra.apache.org/;
|
||||
description = "A massively scalable open source NoSQL database";
|
||||
platforms = with platforms; all;
|
||||
license = with licenses; asl20;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ nckx rushmorem ];
|
||||
};
|
||||
}
|
||||
|
@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = http://cassandra.apache.org/;
|
||||
description = "A massively scalable open source NoSQL database";
|
||||
platforms = with platforms; all;
|
||||
license = with licenses; asl20;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ nckx rushmorem ];
|
||||
};
|
||||
}
|
||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://www.creytiv.com/restund.html";
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
maintainers = with stdenv.lib.maintainers; [raskin];
|
||||
license = with stdenv.lib.licenses; bsd3;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
inherit version;
|
||||
downloadPage = "http://www.creytiv.com/pub/";
|
||||
updateWalker = true;
|
||||
|
@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
|
||||
systems.
|
||||
'';
|
||||
homepage = "https://www.mirbsd.org/mksh.htm";
|
||||
license = with stdenv.lib.licenses; free;
|
||||
license = stdenv.lib.licenses.free;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user