ctucx.git: nixfiles

ctucx' nixfiles

commit c85eddaea2debf163a94bbf6e0ed4793810b0cce
parent 8c5b736ebf11d01ee063f9d48c1e34ef52b81b7c
Author: Leah (ctucx) <git@ctu.cx>
Date: Tue, 16 May 2023 17:12:50 +0200

pkgs: remove `gotosocial-bin`
1 file changed, 0 insertions(+), 28 deletions(-)
D
pkgs/gotosocial-bin.nix
|
28
----------------------------
diff --git a/pkgs/gotosocial-bin.nix b/pkgs/gotosocial-bin.nix
@@ -1,28 +0,0 @@
-{ stdenv, lib, fetchurl, autoPatchelfHook }:
-
-stdenv.mkDerivation rec {
-  pname = "gotosocial";
-
-  version = "0.7.1";
-
-  src = fetchurl {
-    url    = "https://github.com/superseriousbusiness/gotosocial/releases/download/v${version}/gotosocial_${version}_linux_amd64.tar.gz";
-    sha256 = "sha256-4ZdAtctokdgEQEJdXCVQif7wawi3QdxfEVdhyUo5EOc";
-  };
-
-  nativeBuildInputs = [
-    autoPatchelfHook
-  ];
-
-  sourceRoot = ".";
-
-  installPhase = ''
-    mkdir -p $out/bin;
-    mkdir -p $out/share;
-
-    cp ./gotosocial $out/bin/gotosocial
-    cp -r ./web $out/share/
-
-    chmod +x $out/bin/gotosocial;
-  '';
-}