2016-07-04 09:24:02 +01:00
|
|
|
{ stdenv, fetchurl, acl, attr, zlib, libburn, libisofs }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libisoburn";
|
2018-10-03 18:11:49 +01:00
|
|
|
version = "1.5.0";
|
2016-07-04 09:24:02 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
|
2018-10-03 18:11:49 +01:00
|
|
|
sha256 = "1r8xbhw21bmcp3jhfmvadivh0fa7f4k6larv8lvg4ka0kiigbhfs";
|
2016-07-04 09:24:02 +01: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 18:50:55 +01:00
|
|
|
platforms = with platforms; linux;
|
2016-07-04 09:24:02 +01:00
|
|
|
};
|
|
|
|
}
|