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

20 lines
582 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2016-04-23 00:57:00 +00:00
stdenv.mkDerivation rec {
pname = "libburn";
2021-02-10 11:37:04 +00:00
version = "1.5.4";
2016-04-23 00:57:00 +00:00
src = fetchurl {
url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
2021-02-10 11:37:04 +00:00
sha256 = "sha256-UlBZ0QdZxcuBSO68hju1EOMRxmNgPae9LSHEa3z2O1Q=";
2016-04-23 00:57:00 +00:00
};
meta = with 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
};
}