Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 25 lines 671 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 = "packet"; 6 version = "v2.2.2"; 7 8 goPackagePath = "github.com/ebsarr/packet"; 9 10 src = fetchgit { 11 rev = version; 12 url = "https://github.com/ebsarr/packet"; 13 sha256 = "18n8f2rlab4icb28k1b9gnh30zy382v792x07fmcdqq4nkw6wvwf"; 14 }; 15 16 goDeps = ./deps.nix; 17 18 meta = { 19 description = "a CLI tool to manage packet.net services"; 20 homepage = "https://github.com/ebsarr/packet"; 21 license = stdenv.lib.licenses.mit; 22 maintainers = [ stdenv.lib.maintainers.grahamc ]; 23 platforms = stdenv.lib.platforms.unix; 24 }; 25}