From 40896e50743568ee3716011504b3d7c040360922 Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Mon, 4 Jul 2016 01:27:59 -0700 Subject: [PATCH] xorriso: 1.4.2 -> 1.4.4 --- pkgs/tools/cd-dvd/xorriso/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/cd-dvd/xorriso/default.nix b/pkgs/tools/cd-dvd/xorriso/default.nix index 8dd4c709b01..730f8a90ce2 100644 --- a/pkgs/tools/cd-dvd/xorriso/default.nix +++ b/pkgs/tools/cd-dvd/xorriso/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv, libcdio, zlib, bzip2, readline, acl, attr }: stdenv.mkDerivation rec { - name = "xorriso-1.4.2"; + name = "xorriso-1.4.4"; src = fetchurl { url = "mirror://gnu/xorriso/${name}.tar.gz"; - sha256 = "1cq4a0904lnz6nygbgarnlq49cz4qnfdyvz90s3nfk5as7gbwhr8"; + sha256 = "1izv8dvwacyh432vv1rm6lyjrq0v205kyakfra6iwa146c9m9fgr"; }; doCheck = true; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { buildInputs = [ libcdio zlib bzip2 readline attr ] ++ stdenv.lib.optional stdenv.isLinux acl; - meta = { + meta = with stdenv.lib; { description = "ISO 9660 Rock Ridge file system manipulator"; longDescription = @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { filesystems. ''; - license = stdenv.lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; homepage = http://www.gnu.org/software/xorriso/; - maintainers = [ ]; - platforms = stdenv.lib.platforms.unix; + maintainers = [ maintainers.vrthra ]; + platforms = platforms.unix; }; }