pkgs/zutty: repo moved from gh to self-hosted

This commit is contained in:
Aaron Bieber 2024-01-12 07:05:43 -07:00
parent 2a82a78571
commit 1e895c2183
No known key found for this signature in database

View File

@ -1,19 +1,18 @@
{ lib { lib
, stdenv , stdenv
, fetchFromGitHub , fetchurl
, pkgs , pkgs
, go-font , go-font
, ... , ...
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "zutty"; pname = "zutty";
version = "0.14"; version = "unstable-2024-01-10";
rev = "8453f9f251dfcc14e0ba2d819b5367cbc5c9c47e";
src = fetchFromGitHub { src = fetchurl {
owner = "tomszilagyi"; url = "https://git.hq.sig7.se/zutty.git/snapshot/${rev}.tar.gz";
repo = "zutty"; hash = "sha256-iRAr1QEZj1UvKBHRJmhZkbEq/Uq0gEAMNTtCpx/nz5w=";
rev = version;
sha256 = "sha256-b/q7hIi/U/GkKo+MIFX2wWnHZAy5rQGXNul3I1pxo1Q=";
}; };
patches = [ ./zutty_go.diff ]; patches = [ ./zutty_go.diff ];