aboutsummaryrefslogtreecommitdiffhomepage
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-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;
+ };
+}