init: first commit

This commit is contained in:
Louis Dalibard 2024-04-29 18:47:38 +02:00
commit a7e5ba1ab1
2 changed files with 34 additions and 0 deletions

0
README.md Normal file
View File

34
adam-gui/default.nix Normal file
View File

@ -0,0 +1,34 @@
{ config, pkgs, ... }:
{
environment.systemPackages = [(adam-gui = buildGoModule rec {
pname = "adam-gui";
version = "0.3.4";
src = fetchFromGitea {
domain = "git.ontake.dev";
owner = "go"
repo = "adam-gui";
rev = "75b0ea38aeaec47babcbad9d7f5b5dc99bcb1b9c";
hash = "sha256-8hwP0pfQifMgmAWpU5GuZn7ar4AbM6cYqTphKpVmReI=";
};
vendorHash = null;
meta = with lib; {
description = "A simple GUI for ADAM branded scales";
homepage = "https://git.ontake.dev/go/adam-gui";
license = licenses.gpl3;
};
desktopItem = makeDesktopItem {
name = "adam-gui";
exec = "adam-gui";
icon = "";
comment = "";
desktopName = "ADAM GUI";
genericName = "ADAM GUI";
categories = "Science;Utility;";
mimeType = "";
};
})];
}