bfcal: init at 1.0

This commit is contained in:
laalsaas 2022-10-12 02:08:14 +02:00
parent 756169bde7
commit 4a22f4be4e
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ stdenv
, lib
, fetchFromSourcehut
, meson
, ninja
, pkg-config
, wrapQtAppsHook
, qtbase
}:
stdenv.mkDerivation rec {
pname = "bfcal";
version = "1.0";
src = fetchFromSourcehut {
owner = "~bitfehler";
repo = "bfcal";
rev = "v${version}";
sha256 = "sha256-2z5ICVEZ55omwcoVWpac/HPwyKF9jDCYO78S9p21VMU=";
};
nativeBuildInputs = [
meson ninja pkg-config wrapQtAppsHook
];
buildInputs = [
qtbase
];
postInstall = ''
mkdir -p $out/bin
install bfcal $out/bin
'';
meta = with lib; {
description = "Quickly display a calendar";
homepage = "https://git.sr.ht/~bitfehler/bfcal";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ laalsaas ];
};
}

View file

@ -27083,6 +27083,8 @@ with pkgs;
bevelbar = callPackage ../applications/window-managers/bevelbar { };
bfcal = libsForQt5.callPackage ../applications/misc/bfcal { };
bibletime = libsForQt5.callPackage ../applications/misc/bibletime { };
bino3d = libsForQt5.callPackage ../applications/video/bino3d {