Skip to content

Commit

Permalink
forgot to actually commit the important stuff???
Browse files Browse the repository at this point in the history
  • Loading branch information
Luna authored and crispgm committed Mar 2, 2024
1 parent 0d9249e commit c2f8f7c
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 8 deletions.
64 changes: 64 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 16 additions & 8 deletions pkg.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
{
buildGoModule,
fetchFromGithub,
fetchFromGitHub,
stdenv,
lib,
...
}:



buildGoModule {
stdenv.mkDerivation buildGoModule rec {
pname = "kicker-cli";
version = "1.0.0"; #there are no versions?

src = fetchFromGithub {
version = "1.0.0"; #there are no versions?
src = fetchFromGitHub {
owner = "crispgm";
repo = "kicker-cli";
#rev = latest
sha256 = "sha256-YsR2KU5Np6xQHkjM8KAoDp/XZ/9DkwBlMbu2IX5OQlk=";
repo = "${pname}";
rev = "18fb2d566fb62f68c90d19468bb5dc545ea47da7";
sha256 = "0xwmpnznys6v7sl7rvnqhjdy78l17hw3bqgi8m12iyw7m1plj6nv";
};
vendorHash = "sha256-sK+blqs5DDcF2Am6GNpkZhQ/AvoDqpxrWZa4rb3v5iE=";
meta = with lib; {
description = "Simple command-line snippet manager, written in Go";
homepage = "https://github.com/knqyf263/pet";
license = licenses.mit;
maintainers = with maintainers; [ kalbasit ];
};
}

0 comments on commit c2f8f7c

Please sign in to comment.