xorriso: 1.4.2 -> 1.4.4

This commit is contained in:
Rahul Gopinath 2016-07-04 01:27:59 -07:00 committed by Bjørn Forsman
parent a30ecd619a
commit 40896e5074

View File

@ -1,11 +1,11 @@
{ fetchurl, stdenv, libcdio, zlib, bzip2, readline, acl, attr }: { fetchurl, stdenv, libcdio, zlib, bzip2, readline, acl, attr }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "xorriso-1.4.2"; name = "xorriso-1.4.4";
src = fetchurl { src = fetchurl {
url = "mirror://gnu/xorriso/${name}.tar.gz"; url = "mirror://gnu/xorriso/${name}.tar.gz";
sha256 = "1cq4a0904lnz6nygbgarnlq49cz4qnfdyvz90s3nfk5as7gbwhr8"; sha256 = "1izv8dvwacyh432vv1rm6lyjrq0v205kyakfra6iwa146c9m9fgr";
}; };
doCheck = true; doCheck = true;
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
buildInputs = [ libcdio zlib bzip2 readline attr ] buildInputs = [ libcdio zlib bzip2 readline attr ]
++ stdenv.lib.optional stdenv.isLinux acl; ++ stdenv.lib.optional stdenv.isLinux acl;
meta = { meta = with stdenv.lib; {
description = "ISO 9660 Rock Ridge file system manipulator"; description = "ISO 9660 Rock Ridge file system manipulator";
longDescription = longDescription =
@ -26,11 +26,11 @@ stdenv.mkDerivation rec {
filesystems. filesystems.
''; '';
license = stdenv.lib.licenses.gpl3Plus; license = licenses.gpl3Plus;
homepage = http://www.gnu.org/software/xorriso/; homepage = http://www.gnu.org/software/xorriso/;
maintainers = [ ]; maintainers = [ maintainers.vrthra ];
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
}; };
} }