3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libisofs/default.nix

23 lines
669 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, acl, attr, zlib }:
2016-04-23 01:57:14 +01:00
stdenv.mkDerivation rec {
pname = "libisofs";
2021-02-10 11:28:34 +00:00
version = "1.5.4";
2016-04-23 01:57:14 +01:00
src = fetchurl {
url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
2021-02-10 11:28:34 +00:00
sha256 = "sha256-qqDtgKdQGXkxb1BbCwF/Kcug6lRjt1EUO60sNgIVqI4=";
2016-04-23 01:57:14 +01:00
};
buildInputs = [ attr zlib ];
propagatedBuildInputs = [ acl ];
meta = with lib; {
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 ];
platforms = with platforms; linux;
2016-04-23 01:57:14 +01:00
};
}