wips of many gnome packages

This commit is contained in:
2024-12-21 20:05:07 -06:00
parent 6754437195
commit b90636dc63
6 changed files with 225 additions and 0 deletions

31
pkgs_wip/memorize.nix Normal file
View File

@@ -0,0 +1,31 @@
{
lib,
stdenv,
fetchFromGitHub,
swiftlint,
}:
stdenv.mkDerivation rec {
pname = "memorize";
version = "0.2.4";
src = fetchFromGitHub {
owner = "david-swift";
repo = "Memorize";
rev = version;
hash = "sha256-ZvyHWxvWryrYPcWkJ3tk997fPKX6kUWYIw/uMumYr/I=";
};
nativeBuildInputs = [
swiftlint
];
meta = {
description = "Study flashcards in a native GNOME app";
homepage = "https://github.com/david-swift/Memorize";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ ];
mainProgram = "memorize";
platforms = lib.platforms.all;
};
}