2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, acl, attr, zlib, libburn, libisofs }:
|
2016-07-04 08:24:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libisoburn";
|
2021-03-08 18:48:12 +00:00
|
|
|
version = "1.5.4";
|
2016-07-04 08:24:02 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
|
2021-03-08 18:48:12 +00:00
|
|
|
sha256 = "sha256-LYmEbUOIDxf6WRxTs76kL/uANijk5jDGgPwskYT3kTI=";
|
2016-07-04 08:24:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ attr zlib libburn libisofs ];
|
|
|
|
propagatedBuildInputs = [ acl ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://libburnia-project.org/";
|
2016-07-04 08:24:02 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|