Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / bfcal / default.nix
blob695f5bc69b0cae09250c5688fd69066b91638eae
1 { stdenv
2 , lib
3 , fetchFromSourcehut
4 , meson
5 , ninja
6 , pkg-config
7 , wrapQtAppsHook
8 , qtbase
9 }:
11 stdenv.mkDerivation rec {
12   pname = "bfcal";
13   version = "1.0.1";
15   src = fetchFromSourcehut {
16     owner = "~bitfehler";
17     repo = "bfcal";
18     rev = "v${version}";
19     sha256 = "sha256-5xyBU+0XUNFUGgvw7U8YE64zncw6SvPmbJhc1LY2u/g=";
20   };
22   nativeBuildInputs = [
23     meson ninja pkg-config wrapQtAppsHook
24   ];
26   buildInputs = [
27     qtbase
28   ];
30   meta = with lib; {
31     description = "Quickly display a calendar";
32     homepage = "https://git.sr.ht/~bitfehler/bfcal";
33     license = licenses.gpl3Plus;
34     platforms = qtbase.meta.platforms;
35     maintainers = with maintainers; [ laalsaas ];
36   };