aboutsummaryrefslogtreecommitdiffhomepage
path: root/pkgs/git-helpers/default.nix
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-04-28 22:15:37 +0900
committernsfisis <nsfisis@gmail.com>2025-04-28 22:15:37 +0900
commit20b7f6efbf44ed10a76adfcf07ae858f3512399a (patch)
tree9bd4b977d0d50f886ab87926c256969bced01816 /pkgs/git-helpers/default.nix
parent7699ec49c8615fca45b0f025ddf0cc373d61d720 (diff)
downloadnur-packages-20b7f6efbf44ed10a76adfcf07ae858f3512399a.tar.gz
nur-packages-20b7f6efbf44ed10a76adfcf07ae858f3512399a.tar.zst
nur-packages-20b7f6efbf44ed10a76adfcf07ae858f3512399a.zip
feat(git-helpers): new
Diffstat (limited to 'pkgs/git-helpers/default.nix')
-rw-r--r--pkgs/git-helpers/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/git-helpers/default.nix b/pkgs/git-helpers/default.nix
new file mode 100644
index 0000000..94b4121
--- /dev/null
+++ b/pkgs/git-helpers/default.nix
@@ -0,0 +1,24 @@
+{
+ lib,
+ buildGoModule,
+ fetchFromGitHub,
+}:
+
+buildGoModule rec {
+ pname = "git-helpers";
+ version = "0.1.0";
+
+ src = fetchFromGitHub {
+ owner = "nsfisis";
+ repo = "git-helpers";
+ rev = "v${version}";
+ hash = "sha256-iK3P91PwKgQz4WIQBJVGjDP65dZSB0LL/NGItMj/wzQ=";
+ };
+ vendorHash = null;
+
+ meta = {
+ description = "My git helpers";
+ homepage = "https://github.com/nsfisis/git-helpers";
+ license = lib.licenses.mit;
+ };
+}