nixpkgs/pkgs/development/libraries/libisofs/default.nix

23 lines
672 B
Nix
Raw Normal View History

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