mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-24 06:19:11 +00:00
hoppscotch-cli: init at 0.0.8
This commit is contained in:
parent
8fdf77f6af
commit
1c4a7b4fcd
@ -27,6 +27,7 @@ let
|
|||||||
callPackage ./gnome-shell-extension-pop-shell.nix { };
|
callPackage ./gnome-shell-extension-pop-shell.nix { };
|
||||||
guile-config = callPackage ./guile-config.nix { };
|
guile-config = callPackage ./guile-config.nix { };
|
||||||
guile-hall = callPackage ./guile-hall.nix { };
|
guile-hall = callPackage ./guile-hall.nix { };
|
||||||
|
hoppscotch-cli = callPackage ./hoppscotch-cli.nix { };
|
||||||
ictree = callPackage ./ictree.nix { };
|
ictree = callPackage ./ictree.nix { };
|
||||||
junction = callPackage ./junction.nix { };
|
junction = callPackage ./junction.nix { };
|
||||||
libcs50 = callPackage ./libcs50.nix { };
|
libcs50 = callPackage ./libcs50.nix { };
|
||||||
|
21
pkgs/hoppscotch-cli.nix
Normal file
21
pkgs/hoppscotch-cli.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, lib, fetchFromGitHub, buildGoModule }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "hoppscotch-cli";
|
||||||
|
version = "0.0.8";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "hoppscotch";
|
||||||
|
repo = "hopp-cli";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-9Xktvmh1DsywIkoy2AV24WBL93/4bVcv8t8tFC89gBo=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-0G4GWbcrsvgJrkjv0IZPXxXheUQg8m/S+ClJUCtztLo=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "HTTP client for Hoppscotch";
|
||||||
|
homepage = "https://hoppscotch.io/";
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user