forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, sqlite, postgresql, zlib, acl, ncurses, openssl, readline
|
|
, CoreFoundation, IOKit
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "bacula-9.6.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/bacula/${name}.tar.gz";
|
|
sha256 = "10c25igfvff09nz5ll8rxc46f659rnwimj1v9cdhr67lwdswk1k2";
|
|
};
|
|
|
|
buildInputs = [ postgresql sqlite zlib ncurses openssl readline ]
|
|
++ stdenv.lib.optionals stdenv.hostPlatform.isDarwin [
|
|
CoreFoundation
|
|
IOKit
|
|
]
|
|
# acl relies on attr, which I can't get to build on darwin
|
|
++ stdenv.lib.optional (!stdenv.isDarwin) acl;
|
|
|
|
configureFlags = [
|
|
"--with-sqlite3=${sqlite.dev}"
|
|
"--with-postgresql=${postgresql}"
|
|
"--with-logdir=/var/log/bacula"
|
|
"--with-working-dir=/var/lib/bacula"
|
|
"--mandir=\${out}/share/man"
|
|
] ++ stdenv.lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "ac_cv_func_setpgrp_void=yes";
|
|
|
|
installFlags = [
|
|
"logdir=\${out}/logdir"
|
|
"working_dir=\${out}/workdir"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/bin
|
|
ln -s $out/sbin/* $out/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Enterprise ready, Network Backup Tool";
|
|
homepage = "http://bacula.org/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ domenkozar lovek323 eleanor ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|