mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
commit
14721b2adc
@ -13,8 +13,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ cmake qt4 ];
|
buildInputs = [ cmake qt4 ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
maintainers = [ ];
|
description = "Lightweight data-interchange format";
|
||||||
|
homepage = http://qjson.sourceforge.net/;
|
||||||
|
license = licenses.lgpl21;
|
||||||
inherit (qt4.meta) platforms;
|
inherit (qt4.meta) platforms;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -21,9 +21,9 @@ stdenv.mkDerivation {
|
|||||||
NIX_CFLAGS_COMPILE = [ "-I${qca2-qt5}/include/Qca-qt5/QtCrypto" ];
|
NIX_CFLAGS_COMPILE = [ "-I${qca2-qt5}/include/Qca-qt5/QtCrypto" ];
|
||||||
NIX_LDFLAGS = [ "-lqca-qt5" ];
|
NIX_LDFLAGS = [ "-lqca-qt5" ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Qt library for OAuth authentication";
|
description = "Qt library for OAuth authentication";
|
||||||
inherit (qt5.qtbase.meta) platforms;
|
inherit (qt5.qtbase.meta) platforms;
|
||||||
maintainers = [ ];
|
license = licenses.lgpl21;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -34,7 +34,10 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildInputs = [ gfortran openblas ];
|
buildInputs = [ gfortran openblas ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.unix;
|
description = "Library for fast updating of qr and cholesky decompositions";
|
||||||
|
homepage = https://sourceforge.net/projects/qrupdate/;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -84,7 +84,8 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
passthru = {inherit mysqlSupport;};
|
passthru = {inherit mysqlSupport;};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.linux;
|
license = with licenses; [ gpl2 qpl ];
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -42,11 +42,12 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ qt4 libX11 bluez perl ];
|
buildInputs = [ qt4 libX11 bluez perl ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Qt Mobility";
|
description = "Qt Mobility";
|
||||||
homepage = http://qt.nokia.com/products/qt-addons/mobility;
|
homepage = http://qt.nokia.com/products/qt-addons/mobility;
|
||||||
maintainers = with stdenv.lib.maintainers; [qknight];
|
maintainers = [ maintainers.qknight ];
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
platforms = platforms.linux;
|
||||||
|
license = with licenses; [ bsd3 fdl13 gpl3 lgpl21 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,6 +43,6 @@ stdenv.mkDerivation {
|
|||||||
description = "QtScript bindings generator";
|
description = "QtScript bindings generator";
|
||||||
homepage = https://code.qt.io/cgit/qt-labs/qtscriptgenerator.git/;
|
homepage = https://code.qt.io/cgit/qt-labs/qtscriptgenerator.git/;
|
||||||
inherit (qt4.meta) platforms;
|
inherit (qt4.meta) platforms;
|
||||||
maintainers = [ ];
|
license = stdenv.lib.licenses.lgpl21;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -11,8 +11,10 @@ stdenv.mkDerivation {
|
|||||||
propagatedBuildInputs = [ncurses];
|
propagatedBuildInputs = [ncurses];
|
||||||
|
|
||||||
patches = stdenv.lib.optional stdenv.isDarwin ./shobj-darwin.patch;
|
patches = stdenv.lib.optional stdenv.isDarwin ./shobj-darwin.patch;
|
||||||
meta = {
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
branch = "5";
|
branch = "5";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.gpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -18,9 +18,10 @@ stdenv.mkDerivation rec {
|
|||||||
checkInputs = [ python ];
|
checkInputs = [ python ];
|
||||||
doCheck = false; # fails, probably missing something
|
doCheck = false; # fails, probably missing something
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "An advanced font engine";
|
description = "An advanced font engine";
|
||||||
maintainers = [ stdenv.lib.maintainers.raskin ];
|
maintainers = [ maintainers.raskin ];
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.lgpl21;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,10 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs = [ glib openssl ];
|
buildInputs = [ glib openssl ];
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.linux;
|
description = "Open-source SIP User-Agent library, compliant with the IETF RFC3261 specification";
|
||||||
|
homepage = http://sofia-sip.sourceforge.net/;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = licenses.lgpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -30,7 +30,10 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
postInstall = stdenv.lib.optional (!stdenv.isDarwin) "chmod +x $out/lib/*.so.*"; # ??
|
postInstall = stdenv.lib.optional (!stdenv.isDarwin) "chmod +x $out/lib/*.so.*"; # ??
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.unix;
|
description = "A type 1 font rasterizer library for UNIX/X11";
|
||||||
|
homepage = http://www.t1lib.org/;
|
||||||
|
license = with licenses; [ gpl2 lgpl2 ];
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,9 @@ stdenv.mkDerivation rec {
|
|||||||
sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake
|
sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.unix;
|
description = "Additional taglib plugins";
|
||||||
|
platforms = platforms.unix;
|
||||||
|
license = licenses.lgpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,6 @@ stdenv.mkDerivation rec {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mono";
|
owner = "mono";
|
||||||
repo = "taglib-sharp";
|
repo = "taglib-sharp";
|
||||||
|
|
||||||
rev = "taglib-sharp-${version}";
|
rev = "taglib-sharp-${version}";
|
||||||
sha256 = "12pk4z6ag8w7kj6vzplrlasq5lwddxrww1w1ya5ivxrfki15h5cp";
|
sha256 = "12pk4z6ag8w7kj6vzplrlasq5lwddxrww1w1ya5ivxrfki15h5cp";
|
||||||
};
|
};
|
||||||
@ -21,6 +20,8 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Library for reading and writing metadata in media files";
|
description = "Library for reading and writing metadata in media files";
|
||||||
|
homepage = https://github.com/mono/taglib-sharp;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = licenses.lgpl21;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -15,9 +15,8 @@ stdenv.mkDerivation rec {
|
|||||||
meta = {
|
meta = {
|
||||||
homepage = http://developer.kde.org/~wheeler/taglib.html;
|
homepage = http://developer.kde.org/~wheeler/taglib.html;
|
||||||
repositories.git = git://github.com/taglib/taglib.git;
|
repositories.git = git://github.com/taglib/taglib.git;
|
||||||
|
|
||||||
description = "A library for reading and editing the meta-data of several popular audio formats";
|
description = "A library for reading and editing the meta-data of several popular audio formats";
|
||||||
inherit (cmake.meta) platforms;
|
inherit (cmake.meta) platforms;
|
||||||
maintainers = [ ];
|
license = with stdenv.lib.licenses; [ lgpl21 mpl11 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -8,9 +8,10 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0dsqvsgzam3mypj2ladn6v1yjq9zd47p3lg21jx6kz5azkkkn0gm";
|
sha256 = "0dsqvsgzam3mypj2ladn6v1yjq9zd47p3lg21jx6kz5azkkkn0gm";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://tclap.sourceforge.net/;
|
homepage = http://tclap.sourceforge.net/;
|
||||||
description = "Templatized C++ Command Line Parser Library";
|
description = "Templatized C++ Command Line Parser Library";
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = platforms.all;
|
||||||
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,10 @@ stdenv.mkDerivation rec {
|
|||||||
propagatedBuildInputs = [ dbus-glib telepathy-glib farstream ];
|
propagatedBuildInputs = [ dbus-glib telepathy-glib farstream ];
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.linux;
|
description = "GObject-based C library that uses Telepathy GLib, Farstream and GStreamer to handle the media streaming part of channels of type Call";
|
||||||
|
homepage = https://telepathy.freedesktop.org/wiki/Components/Telepathy-Farstream/;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = licenses.lgpl21;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -22,8 +22,9 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
passthru.python = python2;
|
passthru.python = python2;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://telepathy.freedesktop.org;
|
homepage = https://telepathy.freedesktop.org;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = with licenses; [ bsd2 bsd3 lgpl21Plus ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -15,5 +15,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = http://tidyp.com/;
|
homepage = http://tidyp.com/;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ pSub ];
|
maintainers = with maintainers; [ pSub ];
|
||||||
|
license = licenses.bsd3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -25,10 +25,10 @@ stdenv.mkDerivation {
|
|||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://linux.techass.com/projects/xdb/;
|
homepage = http://linux.techass.com/projects/xdb/;
|
||||||
description = "C++ class library formerly known as XDB";
|
description = "C++ class library formerly known as XDB";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ ];
|
license = licenses.lgpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -26,9 +26,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.xine-project.org/;
|
homepage = http://www.xine-project.org/;
|
||||||
description = "A high-performance, portable and reusable multimedia playback engine";
|
description = "A high-performance, portable and reusable multimedia playback engine";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = with licenses; [ gpl2 lgpl2 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user