2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2016-04-23 01:57:00 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libburn";
|
2020-11-28 08:01:17 +00:00
|
|
|
version = "1.5.2.pl01";
|
2016-04-23 01:57:00 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
|
2020-11-28 08:01:17 +00:00
|
|
|
sha256 = "1xrp9c2sppbds0agqzmdym7rvdwpjrq6v6q2c3718cwvbjmh66c8";
|
2016-04-23 01:57:00 +01:00
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://libburnia-project.org/";
|
2016-04-23 01:57:00 +01:00
|
|
|
description = "A library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray)";
|
|
|
|
license = licenses.gpl2Plus;
|
2016-07-04 09:18:30 +01:00
|
|
|
maintainers = with maintainers; [ abbradar vrthra ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; unix;
|
2016-04-23 01:57:00 +01:00
|
|
|
};
|
|
|
|
}
|