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

23 lines
670 B
Nix
Raw Normal View History

2016-04-23 00:57:14 +00:00
{ stdenv, fetchurl, acl, attr, zlib }:
stdenv.mkDerivation rec {
pname = "libisofs";
version = "1.5.0";
2016-04-23 00:57:14 +00:00
src = fetchurl {
url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
sha256 = "001l3akf3wb6msl9man776w560iqyvsbwwzs7d7y7msx13irspys";
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
};
}