1{ lib, stdenv, fetchurl, acl, attr, zlib }:
2
3stdenv.mkDerivation rec {
4 pname = "libisofs";
5 version = "1.5.4";
6
7 src = fetchurl {
8 url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
9 sha256 = "sha256-qqDtgKdQGXkxb1BbCwF/Kcug6lRjt1EUO60sNgIVqI4=";
10 };
11
12 buildInputs = [ attr zlib ];
13 propagatedBuildInputs = [ acl ];
14
15 meta = with lib; {
16 homepage = "http://libburnia-project.org/";
17 description = "A library to create an ISO-9660 filesystem with extensions like RockRidge or Joliet";
18 license = licenses.gpl2Plus;
19 maintainers = with maintainers; [ abbradar vrthra ];
20 platforms = with platforms; linux;
21 };
22}