2016-04-23 01:57:14 +01:00
|
|
|
{ stdenv, fetchurl, acl, attr, zlib }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libisofs";
|
2019-11-02 22:59:35 +00:00
|
|
|
version = "1.5.2";
|
2016-04-23 01:57:14 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
|
2019-11-02 22:59:35 +00:00
|
|
|
sha256 = "002mcyqwg625a8hqvsrmgm26mhhfwj0j7rahfhsqirmk02b16npg";
|
2016-04-23 01:57:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ attr zlib ];
|
|
|
|
propagatedBuildInputs = [ acl ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://libburnia-project.org/";
|
2016-04-23 01:57:14 +01:00
|
|
|
description = "A library to create an ISO-9660 filesystem with extensions like RockRidge or Joliet";
|
|
|
|
license = licenses.gpl2Plus;
|
2016-07-04 09:19:54 +01:00
|
|
|
maintainers = with maintainers; [ abbradar vrthra ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; linux;
|
2016-04-23 01:57:14 +01:00
|
|
|
};
|
|
|
|
}
|