1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/by-name/on/onedrive/package.nix
2024-10-03 16:08:46 +10:00

82 lines
1.9 KiB
Nix

{
lib,
autoreconfHook,
curl,
fetchFromGitHub,
installShellFiles,
ldc,
libnotify,
pkg-config,
sqlite,
stdenv,
systemd,
testers,
# Boolean flags
withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "onedrive";
version = "2.5.2";
src = fetchFromGitHub {
owner = "abraunegg";
repo = "onedrive";
rev = "v${finalAttrs.version}";
hash = "sha256-neJi5lIx45GsuwZPzzwwEm1bfrL2DFSysVkxa4fCBww";
};
outputs = [
"out"
"doc"
"man"
];
nativeBuildInputs = [
autoreconfHook
installShellFiles
ldc
pkg-config
];
buildInputs = [
curl
libnotify
sqlite
] ++ lib.optionals withSystemd [ systemd ];
configureFlags = [
(lib.enableFeature true "notifications")
(lib.withFeatureAs withSystemd "systemdsystemunitdir" "${placeholder "out"}/lib/systemd/system")
(lib.withFeatureAs withSystemd "systemduserunitdir" "${placeholder "out"}/lib/systemd/user")
];
# we could also pass --enable-completions to configure but we would then have to
# figure out the paths manually and pass those along.
postInstall = ''
installShellCompletion --bash --name onedrive contrib/completions/complete.bash
installShellCompletion --fish --name onedrive contrib/completions/complete.fish
installShellCompletion --zsh --name _onedrive contrib/completions/complete.zsh
'';
passthru = {
tests.version = testers.testVersion {
package = finalAttrs.finalPackage;
version = "v${finalAttrs.version}";
};
};
meta = {
homepage = "https://github.com/abraunegg/onedrive";
description = "Complete tool to interact with OneDrive on Linux";
license = lib.licenses.gpl3Only;
mainProgram = "onedrive";
maintainers = with lib.maintainers; [
AndersonTorres
peterhoeg
bertof
];
platforms = lib.platforms.linux;
};
})