Merge pull request from markuskowa/fix-lics

Fix licenses
This commit is contained in:
markuskowa 2020-06-11 23:20:00 +02:00 committed by GitHub
commit 3f2e6b9c4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 31 additions and 14 deletions
lib
pkgs
applications
audio
monkeys-audio
rubyripper
blockchains
graphics/jpeg-archive
misc/gosmore
networking/newsreaders/pan
virtualization
window-managers/tinywm
tools/misc/hdf4

View File

@ -276,6 +276,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) {
fullName = "European Union Public License 1.2"; fullName = "European Union Public License 1.2";
}; };
fdl11 = spdx {
spdxId = "GFDL-1.1-only";
fullName = "GNU Free Documentation License v1.1 only";
};
fdl12 = spdx { fdl12 = spdx {
spdxId = "GFDL-1.2-only"; spdxId = "GFDL-1.2-only";
fullName = "GNU Free Documentation License v1.2 only"; fullName = "GNU Free Documentation License v1.2 only";

View File

@ -12,7 +12,9 @@ stdenv.mkDerivation rec {
}; };
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Lossless audio codec";
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.lgpl2;
maintainers = [ ]; maintainers = [ ];
}; };
} }

View File

@ -17,7 +17,9 @@ stdenv.mkDerivation rec {
--prefix PATH : "${cdparanoia}/bin" --prefix PATH : "${cdparanoia}/bin"
''; '';
meta = { meta = with stdenv.lib; {
platforms = stdenv.lib.platforms.linux; description = "High quality CD audio ripper";
platforms = platforms.linux;
license = licenses.gpl3;
}; };
} }

View File

@ -39,5 +39,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.dash.org"; homepage = "https://www.dash.org";
maintainers = with maintainers; [ AndersonTorres ]; maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix; platforms = platforms.unix;
license = licenses.mit;
}; };
} }

View File

@ -35,7 +35,7 @@ stdenv.mkDerivation {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Utilities for archiving photos for saving to long term storage or serving over the web"; description = "Utilities for archiving photos for saving to long term storage or serving over the web";
homepage = "https://github.com/danielgtaylor/jpeg-archive"; homepage = "https://github.com/danielgtaylor/jpeg-archive";
# license = ...; # mixed? license = licenses.mit;
maintainers = [ maintainers.srghma ]; maintainers = [ maintainers.srghma ];
platforms = platforms.all; platforms = platforms.all;
}; };

View File

@ -25,7 +25,7 @@ stdenv.mkDerivation {
patches = [ ./pointer_int_comparison.patch ]; patches = [ ./pointer_int_comparison.patch ];
patchFlags = [ "-p1" "--binary" ]; # patch has dos style eol patchFlags = [ "-p1" "--binary" ]; # patch has dos style eol
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Open Street Map viewer"; description = "Open Street Map viewer";
homepage = "https://sourceforge.net/projects/gosmore/"; homepage = "https://sourceforge.net/projects/gosmore/";
@ -33,5 +33,6 @@ stdenv.mkDerivation {
raskin raskin
]; ];
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.bsd2;
}; };
} }

View File

@ -37,10 +37,11 @@ stdenv.mkDerivation {
enableParallelBuilding = true; enableParallelBuilding = true;
meta = { meta = with stdenv.lib; {
description = "A GTK-based Usenet newsreader good at both text and binaries"; description = "A GTK-based Usenet newsreader good at both text and binaries";
homepage = "http://pan.rebelbase.com/"; homepage = "http://pan.rebelbase.com/";
maintainers = [ stdenv.lib.maintainers.eelco ]; maintainers = [ maintainers.eelco ];
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
license = with licenses; [ gpl2 fdl11 ];
}; };
} }

View File

@ -13,4 +13,6 @@ stdenv.mkDerivation rec {
cp "${qemu}/bin/qemu-io" "$out/bin/qemu-io" cp "${qemu}/bin/qemu-io" "$out/bin/qemu-io"
cp "${qemu}/bin/qemu-nbd" "$out/bin/qemu-nbd" cp "${qemu}/bin/qemu-nbd" "$out/bin/qemu-nbd"
''; '';
inherit (qemu) meta;
} }

View File

@ -27,10 +27,11 @@ stdenv.mkDerivation rec {
cp build/xhyve $out/bin cp build/xhyve $out/bin
''; '';
meta = { meta = with lib; {
description = "Lightweight Virtualization on macOS Based on bhyve"; description = "Lightweight Virtualization on macOS Based on bhyve";
homepage = "https://github.com/mist64/xhyve"; homepage = "https://github.com/mist64/xhyve";
maintainers = [ lib.maintainers.lnl7 ]; maintainers = [ maintainers.lnl7 ];
platforms = lib.platforms.darwin; license = licenses.bsd2;
platforms = platforms.darwin;
}; };
} }

View File

@ -42,10 +42,11 @@ stdenv.mkDerivation rec {
- Resize windows interactively with Alt+Button3 drag (right mouse button) - Resize windows interactively with Alt+Button3 drag (right mouse button)
- Raise windows with Alt+F1 (not high on usability I know, but I needed a - Raise windows with Alt+F1 (not high on usability I know, but I needed a
keybinding in there somewhere) keybinding in there somewhere)
- Focus windows with the mouse pointer (X does this on its own) - Focus windows with the mouse pointer (X does this on its own)
''; '';
homepage = "http://incise.org/tinywm.html"; homepage = "http://incise.org/tinywm.html";
maintainers = with maintainers; [ AndersonTorres ]; maintainers = with maintainers; [ AndersonTorres ];
platforms = libX11.meta.platforms; platforms = libX11.meta.platforms;
license = licenses.publicDomain;
}; };
} }

View File

@ -84,10 +84,11 @@ stdenv.mkDerivation rec {
moveToOutput bin "$bin" moveToOutput bin "$bin"
''; '';
meta = { meta = with stdenv.lib; {
description = "Data model, library, and file format for storing and managing data"; description = "Data model, library, and file format for storing and managing data";
homepage = "https://support.hdfgroup.org/products/hdf4/"; homepage = "https://support.hdfgroup.org/products/hdf4/";
maintainers = with stdenv.lib.maintainers; [ knedlsepp ]; maintainers = with maintainers; [ knedlsepp ];
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
license = licenses.bsdOriginal;
}; };
} }