639f720648
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libisofs/versions
23 lines
668 B
Nix
23 lines
668 B
Nix
{ stdenv, fetchurl, acl, attr, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libisofs-${version}";
|
|
version = "1.5.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://files.libburnia-project.org/releases/${name}.tar.gz";
|
|
sha256 = "001l3akf3wb6msl9man776w560iqyvsbwwzs7d7y7msx13irspys";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|