e2fsprogs: style nitpicks, add meta.license
This commit is contained in:
parent
57212c947b
commit
6afdc516b5
@ -19,11 +19,14 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags =
|
configureFlags =
|
||||||
if stdenv.isLinux then ["--enable-elf-shlibs" "--enable-symlink-install" "--enable-relative-symlinks"
|
if stdenv.isLinux then [
|
||||||
# libuuid, libblkid, uuidd and fsck are in util-linux-ng (the "libuuid" dependency).
|
"--enable-elf-shlibs" "--enable-symlink-install" "--enable-relative-symlinks"
|
||||||
"--disable-libuuid" "--disable-uuidd" "--disable-libblkid" "--disable-fsck"]
|
# libuuid, libblkid, uuidd and fsck are in util-linux-ng (the "libuuid" dependency).
|
||||||
else ["--enable-libuuid --disable-e2initrd-helper"]
|
"--disable-libuuid" "--disable-uuidd" "--disable-libblkid" "--disable-fsck"
|
||||||
|
] else [
|
||||||
|
"--enable-libuuid --disable-e2initrd-helper"
|
||||||
|
]
|
||||||
;
|
;
|
||||||
|
|
||||||
# hacky way to make it install *.pc
|
# hacky way to make it install *.pc
|
||||||
@ -34,10 +37,11 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://e2fsprogs.sourceforge.net/;
|
homepage = http://e2fsprogs.sourceforge.net/;
|
||||||
description = "Tools for creating and checking ext2/ext3/ext4 filesystems";
|
description = "Tools for creating and checking ext2/ext3/ext4 filesystems";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
license = licenses.gpl2;
|
||||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.eelco ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user