bfcal: init at 1.0
This commit is contained in:
parent
756169bde7
commit
4a22f4be4e
2 changed files with 43 additions and 0 deletions
41
pkgs/applications/misc/bfcal/default.nix
Normal file
41
pkgs/applications/misc/bfcal/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -27083,6 +27083,8 @@ with pkgs;
|
||||||
|
|
||||||
bevelbar = callPackage ../applications/window-managers/bevelbar { };
|
bevelbar = callPackage ../applications/window-managers/bevelbar { };
|
||||||
|
|
||||||
|
bfcal = libsForQt5.callPackage ../applications/misc/bfcal { };
|
||||||
|
|
||||||
bibletime = libsForQt5.callPackage ../applications/misc/bibletime { };
|
bibletime = libsForQt5.callPackage ../applications/misc/bibletime { };
|
||||||
|
|
||||||
bino3d = libsForQt5.callPackage ../applications/video/bino3d {
|
bino3d = libsForQt5.callPackage ../applications/video/bino3d {
|
||||||
|
|
Loading…
Reference in a new issue