nixpkgs/pkgs/development/libraries/libburn/default.nix

20 lines
581 B
Nix
Raw Normal View History

2016-04-23 00:57:00 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libburn-${version}";
2016-11-23 14:57:40 +00:00
version = "1.4.6";
2016-04-23 00:57:00 +00:00
src = fetchurl {
url = "http://files.libburnia-project.org/releases/${name}.tar.gz";
2016-11-23 14:57:40 +00:00
sha256 = "0wbh49s3az3sfpai09z1zdgynq7wnwrk31v5589033274nmzldlx";
2016-04-23 00:57:00 +00:00
};
meta = with stdenv.lib; {
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 ];
platforms = with platforms; unix;
2016-04-23 00:57:00 +00:00
};
}