23 lines
653 B
Nix
23 lines
653 B
Nix
|
{ system, lib, pkgs }:
|
||
|
|
||
|
pkgs.buildGoModule rec {
|
||
|
pname = "anonymous-overflow";
|
||
|
version = "1.7.1";
|
||
|
|
||
|
src = pkgs.fetchFromGitHub {
|
||
|
owner = "httpjamesm";
|
||
|
repo = "AnonymousOverflow";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-bjwyxgUod3JFQ4AA0FM+N+n44uybhC07wKNdfxltAdE=";
|
||
|
};
|
||
|
|
||
|
vendorSha256 = "sha256-CAEGKBNqVnNJn8vP8yR93WKFNu/WLn9+kYinQQtiAYE=";
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "View StackOverflow in privacy and without the clutter.";
|
||
|
homepage = "https://github.com/httpjamesm/AnonymousOverflow";
|
||
|
license = [ licenses.mpl20 ];
|
||
|
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
|
||
|
};
|
||
|
}
|