nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 21.11 19 lines 582 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "libburn"; 5 version = "1.5.4"; 6 7 src = fetchurl { 8 url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz"; 9 sha256 = "sha256-UlBZ0QdZxcuBSO68hju1EOMRxmNgPae9LSHEa3z2O1Q="; 10 }; 11 12 meta = with lib; { 13 homepage = "http://libburnia-project.org/"; 14 description = "A library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray)"; 15 license = licenses.gpl2Plus; 16 maintainers = with maintainers; [ abbradar vrthra ]; 17 platforms = with platforms; unix; 18 }; 19}