Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
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 description = "A library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray)"; 14 homepage = "http://libburnia-project.org/"; 15 license = licenses.gpl2Plus; 16 maintainers = with maintainers; [ abbradar vrthra ]; 17 mainProgram = "cdrskin"; 18 platforms = with platforms; unix; 19 }; 20}