nixpkgs/pkgs/by-name/li/libisoburn/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, acl
, attr
, autoreconfHook
, bzip2
, fetchFromGitea
, libburn
, libcdio
, libiconv
, libisofs
, pkg-config
, readline
, stdenv
, zlib
}:
2016-07-04 08:24:02 +00:00
stdenv.mkDerivation (finalAttrs: {
pname = "libisoburn";
2023-09-01 06:04:20 +00:00
version = "1.5.6";
2016-07-04 08:24:02 +00:00
src = fetchFromGitea {
domain = "dev.lovelyhq.com";
owner = "libburnia";
repo = "libisoburn";
rev = "release-${finalAttrs.version}";
hash = "sha256-16qNVlWFVXfvbte5EgP/u193wK2GV/r22hVX0SZWr+0=";
2016-07-04 08:24:02 +00:00
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
2016-07-04 08:24:02 +00:00
buildInputs = [
bzip2
libcdio
libiconv
readline
zlib
libburn
libisofs
] ++ lib.optionals stdenv.isLinux [
acl
attr
];
propagatedBuildInputs = lib.optionals stdenv.isLinux [
acl
];
outputs = [ "out" "lib" "dev" "info" "man" ];
strictDeps = true;
meta = {
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 ";
changelog = "https://dev.lovelyhq.com/libburnia/libisoburn/src/tag/${finalAttrs.src.rev}/ChangeLog";
license = lib.licenses.gpl2Plus;
mainProgram = "osirrox";
maintainers = with lib.maintainers; [ AndersonTorres ];
inherit (libisofs.meta) platforms;
2016-07-04 08:24:02 +00:00
};
})