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

23 lines
683 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, acl, attr, zlib, libburn, libisofs }:
2016-07-04 08:24:02 +00:00
stdenv.mkDerivation rec {
pname = "libisoburn";
2021-03-08 18:48:12 +00:00
version = "1.5.4";
2016-07-04 08:24:02 +00:00
src = fetchurl {
url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
2021-03-08 18:48:12 +00:00
sha256 = "sha256-LYmEbUOIDxf6WRxTs76kL/uANijk5jDGgPwskYT3kTI=";
2016-07-04 08:24:02 +00:00
};
buildInputs = [ attr zlib libburn libisofs ];
propagatedBuildInputs = [ acl ];
meta = with lib; {
homepage = "http://libburnia-project.org/";
2016-07-04 08:24:02 +00:00
description = "Enables creation and expansion of ISO-9660 filesystems on CD/DVD/BD ";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ vrthra ];
platforms = with platforms; linux;
2016-07-04 08:24:02 +00:00
};
}