2016-07-04 08:24:02 +00:00
|
|
|
{ stdenv, fetchurl, acl, attr, zlib, libburn, libisofs }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libisoburn-${version}";
|
2018-02-27 04:41:03 +00:00
|
|
|
version = "1.4.8";
|
2016-07-04 08:24:02 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://files.libburnia-project.org/releases/${name}.tar.gz";
|
2018-02-27 04:41:03 +00:00
|
|
|
sha256 = "19d53j17pn18vfxxqqlqwam5lm21ljyp8nai5434068g7x3m1kwi";
|
2016-07-04 08:24:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ attr zlib libburn libisofs ];
|
|
|
|
propagatedBuildInputs = [ acl ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://libburnia-project.org/;
|
|
|
|
description = "Enables creation and expansion of ISO-9660 filesystems on CD/DVD/BD ";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; linux;
|
2016-07-04 08:24:02 +00:00
|
|
|
};
|
|
|
|
}
|