mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
70895f286d
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/xcj03lcwy88k0kv4mymsimgjmzjxwgdn-httplab-0.3.0-bin/bin/httplab --version` and found version 0.3.0 - found 0.3.0 with grep in /nix/store/xcj03lcwy88k0kv4mymsimgjmzjxwgdn-httplab-0.3.0-bin - found 0.3.0 in filename of file in /nix/store/xcj03lcwy88k0kv4mymsimgjmzjxwgdn-httplab-0.3.0-bin cc "@pradeepchhetri @ehmry @lethalman"
24 lines
571 B
Nix
24 lines
571 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "httplab-${version}";
|
|
version = "0.3.0";
|
|
rev = "v${version}";
|
|
|
|
goPackagePath = "github.com/gchaincl/httplab";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gchaincl";
|
|
repo = "httplab";
|
|
inherit rev;
|
|
sha256 = "1q9rp43z59nryfm79gci5a1gmqw552rqd4cki81rymbj3f6xvrf9";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/gchaincl/httplab;
|
|
description = "Interactive WebServer";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ pradeepchhetri ];
|
|
};
|
|
}
|