chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / me / memorado / package.nix
blobe7282d01d90e628245d5cf30dacd245f551f9434
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , meson
5 , ninja
6 , gtk4
7 , pkg-config
8 , libadwaita
9 , blueprint-compiler
10 , python3
11 , desktop-file-utils
12 , gobject-introspection
13 , wrapGAppsHook4
16 stdenv.mkDerivation rec {
17   pname = "memorado";
18   version = "0.3";
20   src = fetchFromGitHub {
21     owner = "wbernard";
22     repo = "Memorado";
23     rev = "refs/tags/${version}";
24     hash = "sha256-bArcYUHSfpjYsySGZco4fmb6bKRFtG6efhzNSqUROX0=";
25   };
27   nativeBuildInputs = [
28     blueprint-compiler
29     desktop-file-utils
30     gobject-introspection
31     meson
32     ninja
33     pkg-config
34     wrapGAppsHook4
35   ];
37   buildInputs = [
38     gtk4
39     libadwaita
40     (python3.withPackages (ps: with ps; [
41       pygobject3
42     ]))
43   ];
45   meta = with lib; {
46     description = "Simple and clean flashcard memorizing app";
47     homepage = "https://github.com/wbernard/Memorado";
48     license = licenses.gpl3Only;
49     maintainers = with maintainers; [ onny ];
50   };