2016-04-22 17:57:00 -07:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libburn";
|
2019-11-02 16:09:49 -07:00
|
|
|
version = "1.5.2";
|
2016-04-22 17:57:00 -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-02 16:09:49 -07:00
|
|
|
sha256 = "09sjrvq8xsj1gnl2wwyv4lbmicyzzl6x1ac2rrn53xnp34bxnckv";
|
2016-04-22 17:57:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://libburnia-project.org/";
|
2016-04-22 17:57:00 -07:00
|
|
|
description = "A library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray)";
|
|
|
|
license = licenses.gpl2Plus;
|
2016-07-04 01:18:30 -07:00
|
|
|
maintainers = with maintainers; [ abbradar vrthra ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = with platforms; unix;
|
2016-04-22 17:57:00 -07:00
|
|
|
};
|
|
|
|
}
|