Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 25 lines 653 B view raw
1# This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2{ stdenv, buildGoPackage, fetchgit }: 3 4buildGoPackage rec { 5 pname = "ws"; 6 version = "0.2.1"; 7 rev = "e9404cb37e339333088b36f6a7909ff3be76931d"; 8 9 goPackagePath = "github.com/hashrocket/ws"; 10 11 src = fetchgit { 12 inherit rev; 13 url = "https://github.com/hashrocket/ws"; 14 sha256 = "192slrz1cj1chzmfrl0d9ai8bq6s4w0iwpvxkhxb9krga7mkp9xb"; 15 }; 16 17 goDeps = ./deps.nix; 18 19 meta = with stdenv.lib; { 20 description = "websocket command line tool"; 21 homepage = "https://github.com/hashrocket/ws"; 22 license = licenses.mit; 23 platforms = platforms.unix; 24 }; 25}