nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, stdenv, fetchurl, acl, attr, zlib, libburn, libisofs }:
2
3stdenv.mkDerivation rec {
4 pname = "libisoburn";
5 version = "1.5.4";
6
7 src = fetchurl {
8 url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
9 sha256 = "sha256-LYmEbUOIDxf6WRxTs76kL/uANijk5jDGgPwskYT3kTI=";
10 };
11
12 buildInputs = [ attr zlib libburn libisofs ];
13 propagatedBuildInputs = [ acl ];
14
15 meta = with lib; {
16 homepage = "http://libburnia-project.org/";
17 description = "Enables creation and expansion of ISO-9660 filesystems on CD/DVD/BD ";
18 license = licenses.gpl2Plus;
19 maintainers = with maintainers; [ vrthra ];
20 platforms = with platforms; linux;
21 };
22}