nixpkgs/pkgs/applications/misc/bfcal/default.nix

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

38 lines
694 B
Nix
Raw Normal View History

2022-10-12 03:08:14 +03:00
{ stdenv
, lib
, fetchFromSourcehut
, meson
, ninja
, pkg-config
, wrapQtAppsHook
, qtbase
}:
stdenv.mkDerivation rec {
pname = "bfcal";
2022-10-13 10:16:23 +03:00
version = "1.0.1";
2022-10-12 03:08:14 +03:00
src = fetchFromSourcehut {
owner = "~bitfehler";
repo = "bfcal";
rev = "v${version}";
2022-10-13 10:16:23 +03:00
sha256 = "sha256-5xyBU+0XUNFUGgvw7U8YE64zncw6SvPmbJhc1LY2u/g=";
2022-10-12 03:08:14 +03:00
};
nativeBuildInputs = [
meson ninja pkg-config wrapQtAppsHook
];
buildInputs = [
qtbase
];
meta = with lib; {
description = "Quickly display a calendar";
homepage = "https://git.sr.ht/~bitfehler/bfcal";
license = licenses.gpl3Plus;
2022-10-15 03:00:00 +03:00
platforms = qtbase.meta.platforms;
2022-10-12 03:08:14 +03:00
maintainers = with maintainers; [ laalsaas ];
};
}