nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 42 lines 743 B view raw
1{ 2 stdenv, 3 lib, 4 fetchFromSourcehut, 5 meson, 6 ninja, 7 pkg-config, 8 wrapQtAppsHook, 9 qtbase, 10}: 11 12stdenv.mkDerivation rec { 13 pname = "bfcal"; 14 version = "1.0.1"; 15 16 src = fetchFromSourcehut { 17 owner = "~bitfehler"; 18 repo = "bfcal"; 19 rev = "v${version}"; 20 sha256 = "sha256-5xyBU+0XUNFUGgvw7U8YE64zncw6SvPmbJhc1LY2u/g="; 21 }; 22 23 nativeBuildInputs = [ 24 meson 25 ninja 26 pkg-config 27 wrapQtAppsHook 28 ]; 29 30 buildInputs = [ 31 qtbase 32 ]; 33 34 meta = with lib; { 35 description = "Quickly display a calendar"; 36 mainProgram = "bfcal"; 37 homepage = "https://git.sr.ht/~bitfehler/bfcal"; 38 license = licenses.gpl3Plus; 39 platforms = qtbase.meta.platforms; 40 maintainers = with maintainers; [ laalsaas ]; 41 }; 42}