Skip to content

Commit bf95b35

Browse files
committed
nyrna: init at v2.25.0
Signed-off-by: Andrii Sultanov <sultanovandriy@gmail.com>
1 parent e8e2732 commit bf95b35

3 files changed

Lines changed: 1663 additions & 0 deletions

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"flutter_app_builder": "sha256-0oON8i1cgh4HxJw6eC52SJbt9yhON3NfUcw1OsO7GfQ=",
3+
"helpers": "sha256-pEbnEymxKIcDWCme4HaAInYbQM3xahP13/yo/Oy8VFQ=",
4+
"hotkey_manager": "sha256-DoXVnT3rOstpoaOsavv34fTQGiIA1h2jMl9aHa0j6m0=",
5+
"window_size": "sha256-71PqQzf+qY23hTJvcm0Oye8tng3Asr42E2vfF1nBmVA="
6+
}

pkgs/by-name/ny/nyrna/package.nix

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
lib,
3+
flutter335,
4+
fetchFromGitHub,
5+
keybinder3,
6+
libayatana-appindicator,
7+
}:
8+
9+
flutter335.buildFlutterApplication {
10+
pname = "nyrna";
11+
version = "2.25.0";
12+
13+
src = fetchFromGitHub {
14+
owner = "Merrit";
15+
repo = "nyrna";
16+
rev = "edae830e80c49122cf6c9f8505a6c7bb9e6b5368";
17+
hash = "sha256-c9rnN057CbSsvBIwmK4y2m1LJGBAUrbS181VDfJbkhQ=";
18+
};
19+
20+
pubspecLock = lib.importJSON ./pubspec.lock.json;
21+
22+
gitHashes = lib.importJSON ./git-hashes.json;
23+
24+
buildInputs = [
25+
keybinder3
26+
libayatana-appindicator
27+
];
28+
29+
preBuild = ''
30+
packageRun build_runner build --delete-conflicting-outputs
31+
'';
32+
33+
meta = {
34+
description = "Suspend games and applications";
35+
longDescription = ''
36+
Nyrna allows to suspend games and applications.
37+
It's easy-to-use: similar to the suspend mode on consoles, easily suspend
38+
and resume your PC games with the push of a button.
39+
It's powerful: Suspend and resume your games with a hotkey for the active
40+
window or for specific applications, the friendly Material GUI, or the
41+
CLI interface.
42+
'';
43+
homepage = "https://nyrna.merritt.codes/";
44+
license = lib.licenses.gpl3Plus;
45+
maintainers = with lib.maintainers; [ ynot ];
46+
};
47+
}

0 commit comments

Comments
 (0)