initial commit. after fucking it up once

This commit is contained in:
Ittihadyya 2024-11-03 19:50:18 +02:00
commit b7cea98e99
48 changed files with 3437 additions and 0 deletions

25
adyya-pkgs/beeref.nix Normal file
View file

@ -0,0 +1,25 @@
{
appimageTools,
fetchurl,
lib,
...
}:
let
name = "beeref";
version = "0.3.3";
src = fetchurl {
url = "https://github.com/rbreu/beeref/releases/download/v${version}/${name}-${version}.appimage";
hash = "sha256-pavXKtjOvKY2IUPp+UP0v8WkrpPeNEcNDhqoQtFYszo=";
};
in
appimageTools.wrapType2 {
inherit name version src;
extraPkgs = pkgs: [ pkgs.python311 ];
meta = with lib; {
description = "A Simple Reference Image Viewer";
homepage = "https://github.com/rbreu/beeref";
license = licenses.gpl3Only;
mainProgram = "beeref";
};
}