Merge pull request #46581 from markuskowa/licenses-17

Add licenses
This commit is contained in:
xeji 2018-09-12 23:34:51 +02:00 committed by GitHub
commit df2bae8097
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 33 additions and 22 deletions

View file

@ -16,9 +16,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ python3.pkgs.sphinx ];
makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ];
meta = {
meta = with stdenv.lib; {
description = "A program to generate and execute DesktopEntry files of the Application type";
homepage = https://github.com/jceb/dex;
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
license = licenses.gpl3Plus;
};
}

View file

@ -19,5 +19,6 @@ stdenv.mkDerivation {
meta = {
platforms = stdenv.lib.platforms.linux;
inherit (virtualglLib.meta) license;
};
}

View file

@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = http://www.virtualgl.org/;
description = "X11 GL rendering in a remote computer with full 3D hw acceleration";
license = licenses.free; # many parts under different free licenses
license = licenses.wxWindows;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};

View file

@ -26,9 +26,10 @@ stdenv.mkDerivation rec {
sed -i -e '/#!\/bin\/sh/a"PATH=${xorg.xdpyinfo}\/bin:${xorg.xauth}\/bin:$PATH\\n"' -e 's|/bin/su|/run/wrappers/bin/su|g' x11vnc/ssltools.h
'';
meta = {
meta = with stdenv.lib; {
description = "A VNC server connected to a real X11 screen";
homepage = http://www.karlrunge.com/x11vnc/;
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
license = licenses.gpl2;
};
}

View file

@ -15,9 +15,10 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
meta = {
meta = with stdenv.lib; {
homepage = http://fredrik.hubbe.net/x2vnc.html;
description = "A program to control a remote VNC server";
platforms = stdenv.lib.platforms.unix;
platforms = platforms.unix;
license = licenses.gpl2;
};
}

View file

@ -81,5 +81,6 @@ in buildPythonApplication rec {
description = "Persistent remote applications for X";
platforms = platforms.linux;
maintainers = with maintainers; [ tstrobel offline ];
license = licenses.gpl2;
};
}

View file

@ -68,11 +68,12 @@ buildPythonApplication rec {
#'';
meta = {
meta = with stdenv.lib; {
homepage = http://xpra.org/;
downloadPage = "https://xpra.org/src/";
downloadURLRegexp = "xpra-.*[.]tar[.]xz$";
description = "Persistent remote applications for X";
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
license = licenses.gpl2;
};
}

View file

@ -24,10 +24,11 @@ stdenv.mkDerivation rec {
ln -s libXinerama.so.1 $out/lib/libXinerama.so
'';
meta = {
meta = with stdenv.lib; {
homepage = http://xpra.org/;
description = "fakeXinerama for Xpra";
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ tstrobel ];
platforms = platforms.linux;
maintainers = [ maintainers.tstrobel ];
license = licenses.gpl2;
};
}

View file

@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
substituteInPlace Makefile \
--replace "\$(DESTDIR)/usr" "$out" \
--replace "-o root" "" \
--replace "-g root" ""
--replace "-g root" ""
'';
makeFlags = [ "LIBDIR=$out" ];
@ -29,12 +29,13 @@ stdenv.mkDerivation rec {
tar xf "${dd_rhelp_src}" -C "$out/share/dd_rescue"
cp "$out/share/dd_rescue"/dd_rhelp*/dd_rhelp "$out/bin"
'';
meta = with stdenv.lib; {
description = "A tool to copy data from a damaged block device";
maintainers = with maintainers; [ raskin domenkozar ];
platforms = platforms.linux;
downloadPage = "http://www.garloff.de/kurt/linux/ddrescue/";
homepage = "http://www.garloff.de/kurt/linux/ddrescue/";
license = licenses.gpl2Plus;
inherit version;
updateWalker = true;
};

View file

@ -9,7 +9,7 @@ stdenv.mkDerivation {
rev = "2e7b4317c723406bd75b2a1d640219ab9f8090ce";
sha256 = "04fyna8p7q7skzx9fzmncd6gx7x5pwa9jh8a84hpljlvj0kldfs8";
};
buildInputs = [ go systemd polkit m4 removeReferencesTo ];
disallowedRequisites = [ go ];
@ -19,9 +19,10 @@ stdenv.mkDerivation {
find $out/bin -type f -exec remove-references-to -t ${go} '{}' +
'';
meta = {
meta = with stdenv.lib; {
description = "A daemon for keeping the system timezone up-to-date based on the current location";
homepage = https://github.com/Stebalien/localtime;
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
license = licenses.gpl3;
};
}

View file

@ -8,10 +8,10 @@ stdenv.mkDerivation rec {
sha256 = "1wwy7iiz1lvc32c777yd4vp0c0dqfdlm5jrsm3aa62xx141pmjqx";
};
meta = {
meta = with stdenv.lib; {
homepage = http://sg.danny.cz/sg/;
description = "Utilities that send SCSI commands to devices";
platforms = stdenv.lib.platforms.linux;
maintainers = [ ];
platforms = platforms.linux;
license = with licenses; [ bsd2 gpl2Plus ];
};
}

View file

@ -22,5 +22,6 @@ stdenv.mkDerivation rec {
homepage = http://www.codon.org.uk/~mjg59/vbetool/;
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
license = licenses.gpl2;
};
}

View file

@ -1,4 +1,4 @@
{ buildRubyGem, ruby }:
{ lib, buildRubyGem, ruby }:
buildRubyGem rec {
inherit ruby;
@ -12,5 +12,6 @@ buildRubyGem rec {
homepage = https://github.com/unnu/flvtool2;
description = "A tool to manipulate Macromedia Flash Video files";
platforms = ruby.meta.platforms;
license = lib.licenses.bsd3;
};
}