nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at devShellTools-shell 54 lines 938 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 meson, 6 ninja, 7 gtk4, 8 pkg-config, 9 libadwaita, 10 blueprint-compiler, 11 python3, 12 desktop-file-utils, 13 gobject-introspection, 14 wrapGAppsHook4, 15}: 16 17stdenv.mkDerivation rec { 18 pname = "memorado"; 19 version = "0.5"; 20 21 src = fetchFromGitHub { 22 owner = "wbernard"; 23 repo = "Memorado"; 24 tag = version; 25 hash = "sha256-HNZdWRATjSfMk0e99CERPuR891549+wS/WeA7XGFxto="; 26 }; 27 28 nativeBuildInputs = [ 29 blueprint-compiler 30 desktop-file-utils 31 gobject-introspection 32 meson 33 ninja 34 pkg-config 35 wrapGAppsHook4 36 ]; 37 38 buildInputs = [ 39 gtk4 40 libadwaita 41 (python3.withPackages ( 42 ps: with ps; [ 43 pygobject3 44 ] 45 )) 46 ]; 47 48 meta = with lib; { 49 description = "Simple and clean flashcard memorizing app"; 50 homepage = "https://github.com/wbernard/Memorado"; 51 license = licenses.gpl3Only; 52 maintainers = with maintainers; [ onny ]; 53 }; 54}