about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorMartino Fontana <tinozzo123@tutanota.com>2022-06-02 21:26:59 +0200
committerMartino Fontana <tinozzo123@tutanota.com>2022-06-22 14:58:24 +0200
commite9b39ae01c1af6f4be2359a19c0817656412d82c (patch)
tree5fb057dd424d4fa2d518b674a077753a4cde3762 /pkgs/games
parent773cbfbd2886b8f58a37f2f665122dcf83576f70 (diff)
butler: init at 15.21.0
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/itch/butler.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/games/itch/butler.nix b/pkgs/games/itch/butler.nix
new file mode 100644
index 0000000000000..68f1bac49e903
--- /dev/null
+++ b/pkgs/games/itch/butler.nix
@@ -0,0 +1,29 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "butler";
+  version = "15.21.0";
+
+  src = fetchFromGitHub {
+    owner = "itchio";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "sha256-vciSmXR3wI3KcnC+Uz36AgI/WUfztA05MJv1InuOjJM=";
+  };
+
+  proxyVendor = true;
+
+  vendorSha256 = "sha256-EIl0ZFDKbZopUR22hp5a2vRUu0O1h1O953NrtoNa2x8=";
+
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Command-line itch.io helper";
+    homepage = "https://github.com/itchio/butler";
+    license = licenses.mit;
+    maintainers = with maintainers; [ martfont ];
+  };
+}