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

20 lines
583 B
Nix
Raw Normal View History

2016-04-23 01:57:00 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "libburn";
version = "1.5.0";
2016-04-23 01:57:00 +01:00
src = fetchurl {
url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
sha256 = "1gg2kgnqvaa2fwghai62prxz6slpak1f6bvgjh8m4dn16v114asq";
2016-04-23 01:57:00 +01:00
};
meta = with stdenv.lib; {
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 ];
platforms = with platforms; unix;
2016-04-23 01:57:00 +01:00
};
}