3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #46550 from markuskowa/licenses-16

Add licenses
This commit is contained in:
xeji 2018-09-12 00:22:36 +02:00 committed by GitHub
commit c016e7f930
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 39 additions and 22 deletions

View file

@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://dar.linux.free.fr;
description = "Disk ARchiver, allows backing up files into indexed archives";
maintainers = with maintainers; [ ];
license = licenses.gpl2;
platforms = platforms.unix;
};
}

View file

@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
homepage = https://contextfreeart.org/;
license = licenses.gpl2;
downloadPage = "https://contextfreeart.org/mediawiki/index.php/Download_page";
};
}

View file

@ -24,9 +24,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
meta = {
meta = with stdenv.lib; {
description = "Multi-language OCR system";
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [raskin];
homepage = https://launchpad.net/cuneiform-linux;
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = [ maintainers.raskin ];
};
}

View file

@ -15,10 +15,10 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
meta = {
meta = with stdenv.lib; {
homepage = https://cgit.freedesktop.org/xorg/app/editres/;
description = "A dynamic resource editor for X Toolkit applications";
platforms = stdenv.lib.platforms.linux;
license = licenses.mit;
platforms = platforms.linux;
};
}

View file

@ -11,9 +11,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libexif popt libintl ];
meta = {
homepage = http://libexif.sourceforge.net/;
meta = with stdenv.lib; {
homepage = https://libexif.github.io;
description = "A utility to read and manipulate EXIF data in digital photographs";
platforms = stdenv.lib.platforms.unix;
platforms = platforms.unix;
license = licenses.lgpl21;
};
}

View file

@ -15,6 +15,7 @@ stdenv.mkDerivation rec {
homepage = https://fukuchi.org/works/qrencode/;
description = "QR code encoder";
platforms = platforms.all;
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ yegortimoshenko ];
};
}

View file

@ -30,5 +30,8 @@ stdenv.mkDerivation rec {
dontBuild = true;
meta.platforms = stdenv.lib.platforms.unix;
meta = with stdenv.lib; {
platforms = platforms.unix;
license = licenses.gpl3;
};
}

View file

@ -17,5 +17,6 @@ stdenv.mkDerivation rec {
homepage = http://www.freedesktop.org/wiki/Software/desktop-file-utils;
description = "Command line utilities for working with .desktop files";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.gpl2;
};
}

View file

@ -21,9 +21,10 @@ stdenv.mkDerivation rec {
cp ent $out/bin/
'';
meta = {
meta = with stdenv.lib; {
description = "Pseudorandom Number Sequence Test Program";
homepage = http://www.fourmilab.ch/random/;
platforms = stdenv.lib.platforms.all;
platforms = platforms.all;
license = licenses.publicDomain;
};
}

View file

@ -18,5 +18,6 @@ buildGoPackage rec {
homepage = https://github.com/fgeller/kt;
maintainers = with maintainers; [ utdemir ];
platforms = with platforms; unix;
license = licenses.mit;
};
}

View file

@ -15,8 +15,10 @@ stdenv.mkDerivation {
sed -e 's@static \(GHashTable [*]mdb_backends;\)@\1@' -i src/libmdb/backend.c
'';
meta = {
meta = with stdenv.lib; {
description = ".mdb (MS Access) format tools";
platforms = stdenv.lib.platforms.unix;
homepage = http://mdbtools.sourceforge.net;
platforms = platforms.unix;
license = with licenses; [ gpl2 lgpl2 ];
};
}

View file

@ -26,8 +26,10 @@ stdenv.mkDerivation {
sed -e 's@static \(GHashTable [*]mdb_backends;\)@\1@' -i src/libmdb/backend.c
'';
meta = {
meta = with stdenv.lib; {
description = ".mdb (MS Access) format tools";
platforms = stdenv.lib.platforms.linux;
homepage = http://mdbtools.sourceforge.net;
platforms = platforms.linux;
license = with licenses; [ gpl2 lgpl2 ];
};
}

View file

@ -24,10 +24,11 @@ stdenv.mkDerivation rec {
cp rkunpack rkcrc rkflashtool rkparameters rkparametersblock rkunsign rkmisc $out/bin
'';
meta = {
meta = with stdenv.lib; {
homepage = https://sourceforge.net/projects/rkflashtool/;
description = "Tools for flashing Rockchip devices";
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.viric ];
platforms = platforms.linux;
maintainers = [ maintainers.viric ];
license = licenses.bsd2;
};
}

View file

@ -20,7 +20,8 @@ stdenv.mkDerivation {
--prefix PATH : ${stdenv.lib.makeBinPath [ getopt xorgserver xauth which utillinux gawk coreutils ]}
'';
meta = {
platforms = stdenv.lib.platforms.linux;
meta = with stdenv.lib; {
platforms = platforms.linux;
license = licenses.gpl2;
};
}