mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ lib, buildGoModule, fetchurl, fetchFromGitHub }:
|
|
|
|
let
|
|
version = "1.8.2";
|
|
|
|
# TODO: must build the extension instead of downloading it. But since it's
|
|
# literally an asset that is indifferent regardless of the platform, this
|
|
# might be just enough.
|
|
webext = fetchurl {
|
|
url = "https://github.com/browsh-org/browsh/releases/download/v${version}/browsh-${version}.xpi";
|
|
hash = "sha256-04rLyQt8co3Z7UJnDJmj++E4n7of0Zh1jQ90Bfwnx5A=";
|
|
};
|
|
|
|
in
|
|
|
|
buildGoModule rec {
|
|
inherit version;
|
|
|
|
pname = "browsh";
|
|
|
|
sourceRoot = "${src.name}/interfacer";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "browsh-org";
|
|
repo = "browsh";
|
|
rev = "v${version}";
|
|
hash = "sha256-KbBVcNuERBL94LuRx872zpjQTzR6c5GalsBoNR52SuQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-eCvV3UuM/JtCgMqvwvqWF3bpOmPSos5Pfhu6ETaS58c=";
|
|
|
|
preBuild = ''
|
|
cp "${webext}" src/browsh/browsh.xpi
|
|
'';
|
|
|
|
# Tests require network access
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Fully-modern text-based browser, rendering to TTY and browsers";
|
|
mainProgram = "browsh";
|
|
homepage = "https://www.brow.sh/";
|
|
maintainers = with maintainers; [ kalbasit siraben ];
|
|
license = lib.licenses.lgpl21;
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
};
|
|
}
|