Merge pull request #45336 from Mic92/licenses

Add licenses
This commit is contained in:
Jörg Thalheim 2018-08-23 10:58:18 +01:00 committed by GitHub
commit 74d1acd762
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 28 additions and 14 deletions

View File

@ -26,5 +26,6 @@ stdenv.mkDerivation rec {
homepage = "http://www.libsdl.org/projects/SDL_image/"; homepage = "http://www.libsdl.org/projects/SDL_image/";
maintainers = with maintainers; [ lovek323 ]; maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix; platforms = platforms.unix;
license = licenses.zlib;
}; };
} }

View File

@ -21,5 +21,6 @@ stdenv.mkDerivation rec {
homepage = http://www.libsdl.org/projects/SDL_mixer/; homepage = http://www.libsdl.org/projects/SDL_mixer/;
maintainers = with maintainers; [ lovek323 ]; maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix; platforms = platforms.unix;
license = licenses.zlib;
}; };
} }

View File

@ -1,4 +1,6 @@
{stdenv, fetchurl, xlibsWrapper, imake, gccmakedep, libXmu, libXpm, libXp, bison, flex, pkgconfig}: { stdenv, fetchurl
, imake, gccmakedep, bison, flex, pkgconfig
, xlibsWrapper, libXmu, libXpm, libXp }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "Xaw3d-1.6.3"; name = "Xaw3d-1.6.3";
@ -6,12 +8,13 @@ stdenv.mkDerivation {
url = https://www.x.org/releases/individual/lib/libXaw3d-1.6.3.tar.bz2; url = https://www.x.org/releases/individual/lib/libXaw3d-1.6.3.tar.bz2;
sha256 = "0i653s8g25cc0mimkwid9366bqkbyhdyjhckx7bw77j20hzrkfid"; sha256 = "0i653s8g25cc0mimkwid9366bqkbyhdyjhckx7bw77j20hzrkfid";
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig bison flex imake gccmakedep ];
buildInputs = [imake gccmakedep libXpm libXp bison flex]; buildInputs = [ libXpm libXp ];
propagatedBuildInputs = [xlibsWrapper libXmu]; propagatedBuildInputs = [ xlibsWrapper libXmu ];
meta = { meta = with stdenv.lib; {
description = "3D widget set based on the Athena Widget set"; description = "3D widget set based on the Athena Widget set";
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.unix;
license = licenses.mit;
}; };
} }

View File

@ -38,9 +38,10 @@ stdenv.mkDerivation {
install -Dm444 ProcessingDeviceKeysSimple.txt $out/share/${baseName} install -Dm444 ProcessingDeviceKeysSimple.txt $out/share/${baseName}
''; '';
meta = { meta = with stdenv.lib; {
homepage = http://forum.doom9.org/showthread.php?t=123311; homepage = http://forum.doom9.org/showthread.php?t=123311;
description = "A library and program to retrieve decryption keys for HD discs"; description = "A library and program to retrieve decryption keys for HD discs";
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
license = licenses.publicDomain;
}; };
} }

View File

@ -2,7 +2,7 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "915resolution-0.5.3"; name = "915resolution-0.5.3";
src = fetchurl { src = fetchurl {
url = "http://915resolution.mango-lang.org/${name}.tar.gz"; url = "http://915resolution.mango-lang.org/${name}.tar.gz";
sha256 = "0hmmy4kkz3x6yigz6hk99416ybznd67dpjaxap50nhay9f1snk5n"; sha256 = "0hmmy4kkz3x6yigz6hk99416ybznd67dpjaxap50nhay9f1snk5n";
@ -15,5 +15,6 @@ stdenv.mkDerivation rec {
homepage = http://915resolution.mango-lang.org/; homepage = http://915resolution.mango-lang.org/;
description = "A tool to modify Intel 800/900 video BIOS"; description = "A tool to modify Intel 800/900 video BIOS";
platforms = [ "i686-linux" "x86_64-linux" ]; platforms = [ "i686-linux" "x86_64-linux" ];
license = licenses.publicDomain;
}; };
} }

View File

@ -22,9 +22,10 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
meta = { meta = {
#homepage = https://github.com/spewspew/9pfs; # the account apparently doesn't exist homepage = https://github.com/mischief/9pfs;
description = "FUSE-based client of the 9P network filesystem protocol"; description = "FUSE-based client of the 9P network filesystem protocol";
maintainers = [ lib.maintainers.eelco ]; maintainers = [ lib.maintainers.eelco ];
platforms = lib.platforms.linux; platforms = lib.platforms.linux;
license = with lib.licenses; [ lpl-102 bsd2 ];
}; };
} }

View File

@ -1,8 +1,8 @@
{ stdenv, fetchurl, fuse }: { stdenv, fetchurl, fuse }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "aefs-0.4pre259-8843b7c"; name = "aefs-0.4pre259-8843b7c";
src = fetchurl { src = fetchurl {
url = "http://tarballs.nixos.org/${name}.tar.bz2"; url = "http://tarballs.nixos.org/${name}.tar.bz2";
sha256 = "167hp58hmgdavg2mqn5dx1xgq24v08n8d6psf33jhbdabzx6a6zq"; sha256 = "167hp58hmgdavg2mqn5dx1xgq24v08n8d6psf33jhbdabzx6a6zq";
@ -10,10 +10,11 @@ stdenv.mkDerivation rec {
buildInputs = [ fuse ]; buildInputs = [ fuse ];
meta = { meta = with stdenv.lib; {
homepage = http://www.st.ewi.tudelft.nl/~dolstra/aefs/; homepage = http://www.st.ewi.tudelft.nl/~dolstra/aefs/;
description = "A cryptographic filesystem implemented in userspace using FUSE"; description = "A cryptographic filesystem implemented in userspace using FUSE";
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
maintainers = [ stdenv.lib.maintainers.eelco ]; maintainers = [ maintainers.eelco ];
license = licenses.gpl2;
}; };
} }

View File

@ -2446,6 +2446,11 @@ in {
doCheck = (!isPyPy); # https://github.com/fabric/fabric/issues/11891 doCheck = (!isPyPy); # https://github.com/fabric/fabric/issues/11891
propagatedBuildInputs = with self; [ paramiko pycrypto ]; propagatedBuildInputs = with self; [ paramiko pycrypto ];
buildInputs = with self; [ fudge_9 nose ]; buildInputs = with self; [ fudge_9 nose ];
meta = {
description = "Pythonic remote execution";
homepage = https://www.fabfile.org/;
license = licenses.bsd2;
};
}; };
faulthandler = if ! isPy3k faulthandler = if ! isPy3k