23 lines
670 B
Nix
23 lines
670 B
Nix
{ stdenv, fetchurl, acl, attr, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libisofs";
|
|
version = "1.5.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "002mcyqwg625a8hqvsrmgm26mhhfwj0j7rahfhsqirmk02b16npg";
|
|
};
|
|
|
|
buildInputs = [ attr zlib ];
|
|
propagatedBuildInputs = [ acl ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://libburnia-project.org/;
|
|
description = "A library to create an ISO-9660 filesystem with extensions like RockRidge or Joliet";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ abbradar vrthra ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|