2016-04-23 00:57:00 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libburn-${version}";
|
2018-02-25 17:03:59 +00:00
|
|
|
version = "1.4.8";
|
2016-04-23 00:57:00 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://files.libburnia-project.org/releases/${name}.tar.gz";
|
2018-02-25 17:03:59 +00:00
|
|
|
sha256 = "19lxnzn8bz70glrrrn2hs43gf5g7gfbcka9rcbckhv1pb7is509y";
|
2016-04-23 00:57:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://libburnia-project.org/;
|
2016-04-23 00:57:00 +00:00
|
|
|
description = "A library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray)";
|
|
|
|
license = licenses.gpl2Plus;
|
2016-07-04 08:18:30 +00:00
|
|
|
maintainers = with maintainers; [ abbradar vrthra ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; unix;
|
2016-04-23 00:57:00 +00:00
|
|
|
};
|
|
|
|
}
|