-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
36 lines (34 loc) · 1.11 KB
/
Copy pathflake.nix
File metadata and controls
36 lines (34 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
description = "A temporary scratch buffer";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
utils = {
url = "github:NewDawn0/nixUtils";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, utils, ... }: {
overlays.default = final: prev: {
note = self.packages.${prev.system}.default;
};
packages = utils.lib.eachSystem { } (pkgs: {
default = pkgs.buildGoModule {
pname = "note";
version = "1.0.0";
src = ./.;
vendorHash = "sha256-kzMvksDjhqKlHvBwl0spOApFKHKM7lm0WG2hifP6+Ro=";
meta = {
description = "A lightweight tool for capturing short-term notes";
longDescription = ''
This tool is designed for quick note-taking.
It's perfect for jotting down temporary ideas or reminders from the command line without leaving any clutter.
'';
homepage = "https://github.com/NewDawn0/note";
license = pkgs.lib.licenses.mit;
maintainers = with pkgs.lib.maintainers; [ NewDawn0 ];
platforms = pkgs.lib.platforms.all;
};
};
});
};
}