Merge pull request #46344 from markuskowa/license-13

Add licenses
This commit is contained in:
xeji 2018-09-08 00:57:47 +02:00 committed by GitHub
commit 56d0a70ef5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 58 additions and 42 deletions

View File

@ -20,5 +20,6 @@ stdenv.mkDerivation rec {
homepage = http://he.fi/bchunk/;
description = "A program that converts CD images in BIN/CUE format into a set of ISO and CDR tracks";
platforms = platforms.unix;
license = licenses.gpl2;
};
}

View File

@ -28,9 +28,10 @@ stdenv.mkDerivation {
# Needed on gcc >= 6.
NIX_CFLAGS_COMPILE = "-Wno-narrowing";
meta = {
meta = with stdenv.lib; {
description = "A tool for recording audio or data CD-Rs in disk-at-once (DAO) mode";
homepage = http://cdrdao.sourceforge.net/;
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
license = licenses.gpl2;
};
}

View File

@ -13,9 +13,10 @@ stdenv.mkDerivation {
buildInputs = [ libdvdread ];
nativeBuildInputs = [ pkgconfig ];
meta = {
meta = with stdenv.lib; {
homepage = https://sourceforge.net/projects/lsdvd/;
description = "Display information about audio, video, and subtitle tracks on a DVD";
platforms = stdenv.lib.platforms.linux;
license = licenses.gpl2;
platforms = platforms.linux;
};
}

View File

@ -28,9 +28,10 @@ stdenv.mkDerivation {
install -Dm755 pigz.pdf "$out/share/doc/pigz/pigz.pdf"
'';
meta = {
meta = with stdenv.lib; {
homepage = http://www.zlib.net/pigz/;
description = "A parallel implementation of gzip for multi-core machines";
platforms = stdenv.lib.platforms.unix;
license = licenses.zlib;
platforms = platforms.unix;
};
}

View File

@ -8,8 +8,9 @@ stdenv.mkDerivation rec {
sha256 = "0k6y0r9kv5qiglnr2j4a0yvfynjkvm0pyv8ly28j0pr3w6rbxrh3";
};
meta = {
meta = with stdenv.lib; {
homepage = http://cis.poly.edu/zdelta;
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
license = licenses.zlib;
};
}

View File

@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
homepage = https://github.com/jamielinux/bashmount;
description = "A menu-driven bash script for the management of removable media with udisks";
maintainers = [ maintainers.koral ];
license = licenses.gpl2;
platforms = platforms.all;
};
}

View File

@ -11,7 +11,11 @@ stdenv.mkDerivation {
doCheck = false; # fails, doesn't work well too, btw
meta = {
platforms = stdenv.lib.platforms.linux;
meta = with stdenv.lib; {
description = "Filesystem for accessing FTP hosts based on FUSE and libcurl";
homepage = http://curlftpfs.sourceforge.net;
license = licenses.gpl2;
platforms = platforms.linux;
};
}

View File

@ -1,7 +1,7 @@
{ stdenv, fetchurl, parted, utillinux }:
stdenv.mkDerivation rec {
version = "1.0.2";
name = "fatresize-${version}";
@ -9,31 +9,32 @@ stdenv.mkDerivation rec {
url = "mirror://sourceforge/fatresize/fatresize-${version}.tar.bz2";
sha256 = "04wp48jpdvq4nn0dgbw5za07g842rnxlh9mig4mslz70zqs0izjm";
};
buildInputs = [ parted utillinux ];
# This patch helps this unmantained piece of software to be built against recent parted
# It basically modifies the detection scheme for parted version (the current one has no micro version defined)
# The second change is to include a header for a moved function since 1.6+ to current 3.1+ parted
# The third change is to modify the call to PED_ASSERT that is no longer defined with 2 params
patches = [ ./fatresize_parted_nix.patch ];
preConfigure = ''
echo "Replacing calls to ped_free with free ..."
substituteInPlace ./fatresize.c --replace ped_free free
'';
# Filesystem resize functions were reintroduced in parted 3.1 due to no other available free alternatives
# but in a sepparate library -> libparted-fs-resize --- that's why the added LDFLAG
makeFlags = ''
LDFLAGS=-lparted-fs-resize
'';
propagatedBuildInputs = [ parted utillinux ];
meta = {
meta = with stdenv.lib; {
description = "The FAT16/FAT32 non-destructive resizer";
homepage = https://sourceforge.net/projects/fatresize;
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
license = licenses.gpl2;
};
}

View File

@ -12,8 +12,10 @@ stdenv.mkDerivation rec {
buildInputs = [ libuuid ];
meta = {
meta = with stdenv.lib; {
description = "IBM JFS utilities";
platforms = stdenv.lib.platforms.linux;
homepage = http://jfs.sourceforge.net;
license = licenses.gpl3;
platforms = platforms.linux;
};
}

View File

@ -17,10 +17,10 @@ stdenv.mkDerivation rec {
doCheck = true;
meta = {
meta = with stdenv.lib; {
homepage = http://www.gnu.org/software/mtools/;
description = "Utilities to access MS-DOS disks";
platforms = stdenv.lib.platforms.unix;
maintainers = [ ];
platforms = platforms.unix;
license = licenses.gpl3;
};
}

View File

@ -18,10 +18,11 @@ stdenv.mkDerivation rec {
sha256 = "07acrqb17kpif2xcsqfqh5j4axvsa4rnh6xwnpqab5b9w5ykbbqv";
};
meta = {
meta = with stdenv.lib; {
homepage = https://github.com/cjd/mtpfs;
description = "FUSE Filesystem providing access to MTP devices";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.qknight ];
platforms = platforms.all;
license = licenses.gpl3;
maintainers = [ maintainers.qknight ];
};
}

View File

@ -46,14 +46,11 @@ stdenv.mkDerivation rec {
find . -name .libs | xargs rm -rf
'';
meta = {
meta = with stdenv.lib; {
description = "NILFS utilities";
maintainers = with stdenv.lib.maintainers;
[
raskin
];
platforms = with stdenv.lib.platforms;
linux;
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
license = with licenses; [ gpl2 lgpl21 ];
downloadPage = "http://nilfs.sourceforge.net/en/download.html";
updateWalker = true;
};

View File

@ -21,10 +21,11 @@ stdenv.mkDerivation rec {
substituteInPlace Makefile --replace ./run-ldconfig true
'';
meta = {
meta = with stdenv.lib; {
inherit version;
homepage = http://www.namesys.com/;
homepage = https://sourceforge.net/projects/reiser4/;
description = "Reiser4 utilities";
platforms = stdenv.lib.platforms.linux;
license = licenses.gpl2;
platforms = platforms.linux;
};
}

View File

@ -40,10 +40,12 @@ stdenv.mkDerivation rec {
chmod a+x \$out/bin/relfs_grant;
'';
meta = {
meta = with stdenv.lib; {
description = "A relational filesystem on top of FUSE";
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
homepage = http://relfs.sourceforge.net;
license = licenses.gpl2;
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
broken = true;
};
}

View File

@ -9,9 +9,11 @@ stdenv.mkDerivation rec
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [fuse glib neon];
meta = {
meta = with stdenv.lib; {
homepage = http://noedler.de/projekte/wdfs/;
license = licenses.gpl2;
description = "User-space filesystem that allows to mount a webdav share";
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
};
}