2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl, acl, attr, zlib, libburn, libisofs }:
|
2016-07-04 01:24:02 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libisoburn";
|
2019-11-30 08:42:40 -08:00
|
|
|
version = "1.5.2";
|
2016-07-04 01:24:02 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
|
2019-11-30 08:42:40 -08:00
|
|
|
sha256 = "1v4hanapr02wf2i6rncc62z8cyc18078nb2y6q4hp3hxa74hnwnc";
|
2016-07-04 01:24:02 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ attr zlib libburn libisofs ];
|
|
|
|
propagatedBuildInputs = [ acl ];
|
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://libburnia-project.org/";
|
2016-07-04 01:24:02 -07:00
|
|
|
description = "Enables creation and expansion of ISO-9660 filesystems on CD/DVD/BD ";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = with platforms; linux;
|
2016-07-04 01:24:02 -07:00
|
|
|
};
|
|
|
|
}
|