mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
20 lines
582 B
Nix
20 lines
582 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libburn";
|
|
version = "1.5.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-UlBZ0QdZxcuBSO68hju1EOMRxmNgPae9LSHEa3z2O1Q=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "http://libburnia-project.org/";
|
|
description = "A library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray)";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ abbradar vrthra ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|