about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorMartino Fontana <tinozzo123@gmail.com>2024-02-24 22:44:41 +0100
committerMartino Fontana <tinozzo123@gmail.com>2024-02-24 22:44:41 +0100
commita556e7b759fe0c4a566dca022e8bb5e01f3c68cf (patch)
tree5c1fe92526a9e677969bead14ee34fde135f1936 /pkgs/games
parent78eaf072dbc1d0acb8b05077f11ecb109893a2c9 (diff)
downloadnixlib-a556e7b759fe0c4a566dca022e8bb5e01f3c68cf.tar
nixlib-a556e7b759fe0c4a566dca022e8bb5e01f3c68cf.tar.gz
nixlib-a556e7b759fe0c4a566dca022e8bb5e01f3c68cf.tar.bz2
nixlib-a556e7b759fe0c4a566dca022e8bb5e01f3c68cf.tar.lz
nixlib-a556e7b759fe0c4a566dca022e8bb5e01f3c68cf.tar.xz
nixlib-a556e7b759fe0c4a566dca022e8bb5e01f3c68cf.tar.zst
nixlib-a556e7b759fe0c4a566dca022e8bb5e01f3c68cf.zip
butler: migrate to by-name
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/itch/butler.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/pkgs/games/itch/butler.nix b/pkgs/games/itch/butler.nix
deleted file mode 100644
index cbd6b8aef936..000000000000
--- a/pkgs/games/itch/butler.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ lib
-, buildGoModule
-, fetchFromGitHub
-, stdenv
-, Cocoa
-, fetchpatch
-}:
-
-buildGoModule rec {
-  pname = "butler";
-  version = "15.21.0";
-
-  src = fetchFromGitHub {
-    owner = "itchio";
-    repo = pname;
-    rev = "v${version}";
-    sha256 = "sha256-vciSmXR3wI3KcnC+Uz36AgI/WUfztA05MJv1InuOjJM=";
-  };
-
-  buildInputs = lib.optionals stdenv.isDarwin [
-    Cocoa
-  ];
-
-  patches = [
-    # update x/sys dependency for darwin build https://github.com/itchio/butler/pull/245
-    (fetchpatch {
-      url = "https://github.com/itchio/butler/pull/245/commits/ef651d373e3061fda9692dd44ae0f7ce215e9655.patch";
-      hash = "sha256-rZZn/OGiv3mRyy89uORyJ99zWN21kZCCQAlFvSKxlPU=";
-    })
-  ];
-
-  proxyVendor = true;
-
-  vendorHash = "sha256-CtBwc5mcgLvl2Bvg5gI+ULJMQEEibx1aN3IpmRNUtwE=";
-
-  doCheck = false;
-
-  meta = with lib; {
-    description = "Command-line itch.io helper";
-    homepage = "https://github.com/itchio/butler";
-    license = licenses.mit;
-    maintainers = with maintainers; [ martfont ];
-  };
-}