mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
libisofs: init at 1.4.2
This commit is contained in:
parent
274a699348
commit
60ddddeb5b
21
pkgs/development/libraries/libisofs/default.nix
Normal file
21
pkgs/development/libraries/libisofs/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, fetchurl, acl, attr, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libisofs-${version}";
|
||||
version = "1.4.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://files.libburnia-project.org/releases/${name}.tar.gz";
|
||||
sha256 = "1axk1ykv8ibrlrd2f3allidviimi4ya6k7wpvr6r4y1sc7mg7rym";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -7735,6 +7735,8 @@ in
|
|||
graphviz = graphviz-nox;
|
||||
};
|
||||
|
||||
libisofs = callPackage ../development/libraries/libisofs { };
|
||||
|
||||
libiptcdata = callPackage ../development/libraries/libiptcdata { };
|
||||
|
||||
libjpeg_original = callPackage ../development/libraries/libjpeg { };
|
||||
|
|
Loading…
Reference in a new issue