Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f5670ebd8e79
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7bcebc60ac94
Choose a head ref
  • 2 commits
  • 14 files changed
  • 2 contributors

Commits on Nov 17, 2019

  1. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    3aa0d77 View commit details
  2. Merge pull request #73542 from cko/missing_descriptions4

    pkgs/development/libraries: Add missing descriptions and homepages
    ryantm authored Nov 17, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7bcebc6 View commit details
2 changes: 2 additions & 0 deletions pkgs/development/libraries/libcdaudio/default.nix
Original file line number Diff line number Diff line change
@@ -8,6 +8,8 @@ stdenv.mkDerivation {
};

meta = {
description = "A portable library for controlling audio CDs";
homepage = "http://libcdaudio.sourceforge.net";
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.lgpl2;
};
1 change: 1 addition & 0 deletions pkgs/development/libraries/libgudev/default.nix
Original file line number Diff line number Diff line change
@@ -32,6 +32,7 @@ stdenv.mkDerivation rec {
};

meta = with stdenv.lib; {
description = "A library that provides GObject bindings for libudev";
homepage = https://wiki.gnome.org/Projects/libgudev;
maintainers = [ maintainers.eelco ] ++ gnome3.maintainers;
platforms = platforms.linux;
1 change: 1 addition & 0 deletions pkgs/development/libraries/libowfat/default.nix
Original file line number Diff line number Diff line change
@@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;

meta = with stdenv.lib; {
description = "A GPL reimplementation of libdjb";
homepage = https://www.fefe.de/libowfat/;
license = licenses.gpl2;
platforms = platforms.linux;
3 changes: 2 additions & 1 deletion pkgs/development/libraries/libre/default.nix
Original file line number Diff line number Diff line change
@@ -12,7 +12,8 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optional (stdenv.cc.libc != null) "SYSROOT=${stdenv.lib.getDev stdenv.cc.libc}"
;
meta = {
homepage = http://www.creytiv.com/re.html;
description = "A library for real-time communications with async IO support and a complete SIP stack";
homepage = "http://www.creytiv.com/re.html";
platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [raskin];
license = stdenv.lib.licenses.bsd3;
3 changes: 2 additions & 1 deletion pkgs/development/libraries/librem/default.nix
Original file line number Diff line number Diff line change
@@ -16,7 +16,8 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optional (stdenv.cc.libc != null) "SYSROOT=${stdenv.lib.getDev stdenv.cc.libc}"
;
meta = {
homepage = http://www.creytiv.com/rem.html;
description = " A library for real-time audio and video processing";
homepage = "http://www.creytiv.com/rem.html";
platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [raskin];
license = stdenv.lib.licenses.bsd3;
1 change: 1 addition & 0 deletions pkgs/development/libraries/libvorbis/default.nix
Original file line number Diff line number Diff line change
@@ -29,6 +29,7 @@ stdenv.mkDerivation rec {
doCheck = true;

meta = with stdenv.lib; {
description = "Vorbis audio compression reference implementation";
homepage = https://xiph.org/vorbis/;
license = licenses.bsd3;
maintainers = [ maintainers.ehmry ];
1 change: 1 addition & 0 deletions pkgs/development/libraries/minizip/default.nix
Original file line number Diff line number Diff line change
@@ -10,6 +10,7 @@ stdenv.mkDerivation {
sourceRoot = "zlib-${zlib.version}/contrib/minizip";

meta = {
description = "Compression library implementing the deflate compression method found in gzip and PKZIP";
inherit (zlib.meta) license homepage;
platforms = stdenv.lib.platforms.unix;
};
1 change: 1 addition & 0 deletions pkgs/development/libraries/netcdf/default.nix
Original file line number Diff line number Diff line change
@@ -41,6 +41,7 @@ in stdenv.mkDerivation rec {
++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" "CC=${mpi}/bin/mpicc" ]);

meta = {
description = "Libraries for the Unidata network Common Data Format";
platforms = stdenv.lib.platforms.unix;
homepage = https://www.unidata.ucar.edu/software/netcdf/;
license = {
2 changes: 2 additions & 0 deletions pkgs/development/libraries/openbabel/default.nix
Original file line number Diff line number Diff line change
@@ -25,6 +25,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkgconfig ];

meta = {
description = "A toolbox designed to speak the many languages of chemical data";
homepage = "http://openbabel.org";
platforms = stdenv.lib.platforms.all;
maintainers = [ ];
license = stdenv.lib.licenses.gpl2Plus;
3 changes: 2 additions & 1 deletion pkgs/development/libraries/openbsm/default.nix
Original file line number Diff line number Diff line change
@@ -16,7 +16,8 @@ stdenv.mkDerivation rec {
configureFlags = [ "ac_cv_file__usr_include_mach_audit_triggers_defs=no" ];

meta = {
homepage = http://www.openbsm.org/;
description = "An implementation of Sun's Basic Security Module (BSM) security audit API and file format";
homepage = "http://www.openbsm.org/";
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ matthewbauer ];
license = lib.licenses.bsd2;
3 changes: 2 additions & 1 deletion pkgs/development/libraries/openexr/default.nix
Original file line number Diff line number Diff line change
@@ -55,7 +55,8 @@ stdenv.mkDerivation rec {
doCheck = false; # fails 1 of 1 tests

meta = with stdenv.lib; {
homepage = https://www.openexr.com/;
description = "A high dynamic-range (HDR) image file format";
homepage = "https://www.openexr.com/";
license = licenses.bsd3;
platforms = platforms.all;
};
8 changes: 3 additions & 5 deletions pkgs/development/libraries/schroedinger/default.nix
Original file line number Diff line number Diff line change
@@ -4,10 +4,7 @@ stdenv.mkDerivation {
name = "schroedinger-1.0.11";

src = fetchurl {
urls = [
http://diracvideo.org/download/schroedinger/schroedinger-1.0.11.tar.gz
https://download.videolan.org/contrib/schroedinger-1.0.11.tar.gz
];
url = https://download.videolan.org/contrib/schroedinger-1.0.11.tar.gz;
sha256 = "04prr667l4sn4zx256v1z36a0nnkxfdqyln48rbwlamr6l3jlmqy";
};

@@ -27,7 +24,8 @@ stdenv.mkDerivation {
];

meta = with stdenv.lib; {
homepage = http://diracvideo.org/;
description = "An implementation of the Dirac video codec in ANSI C";
homepage = "https://sourceforge.net/projects/schrodinger/";
maintainers = [ maintainers.spwhitt ];
license = [ licenses.mpl11 licenses.lgpl2 licenses.mit ];
platforms = platforms.unix;
1 change: 1 addition & 0 deletions pkgs/development/libraries/spandsp/default.nix
Original file line number Diff line number Diff line change
@@ -11,6 +11,7 @@ stdenv.mkDerivation rec {

propagatedBuildInputs = [audiofile libtiff];
meta = {
description = "A portable and modular SIP User-Agent with audio and video support";
homepage = http://www.creytiv.com/baresip.html;
platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [raskin];
2 changes: 2 additions & 0 deletions pkgs/development/libraries/tre/default.nix
Original file line number Diff line number Diff line change
@@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
];

meta = {
description = "Lightweight and robust POSIX compliant regexp matching library";
homepage = "https://laurikari.net/tre/";
platforms = stdenv.lib.platforms.unix;
license = stdenv.lib.licenses.bsd2;
};