Git Product home page Git Product logo

Comments (6)

qknight avatar qknight commented on May 27, 2024 1

no, everything is alright now. just wanted to document it so that other who come across can just adapt it.

from go2nix.

kamilchm avatar kamilchm commented on May 27, 2024

Hi, default.nix generated by go2nix is meant to be used as part of nixpkgs and will work if you move it there, eg. https://github.com/NixOS/nixpkgs/blob/98a9d815e05dd56aba0f9040d96092335cd90444/pkgs/applications/misc/wego/default.nix#L1

But you can change it to standalone by replacing this line with:

with import <nixpkgs>{};

like in https://github.com/kamilchm/go2nix/blob/master/default.nix#L1

Then it should nix-build and nix-shell properly.

go2nix could do it by providing option like --standalone or smth but it don't do it yet :/

from go2nix.

qknight avatar qknight commented on May 27, 2024

i've hacked it that way already but i see this:

error

nix-shell --show-trace
error: while evaluating the attribute ‘goDeps’ of the derivation ‘go1.7-’ at /nix/store/csqbl4ibvlgs01cfcd6f0zxgbvc4wfij-nixos-16.09.680.4e14fd5/nixos/pkgs/development/go-modules/generic/default.nix:68:3:
cannot coerce a set to a string, at /nix/store/csqbl4ibvlgs01cfcd6f0zxgbvc4wfij-nixos-16.09.680.4e14fd5/nixos/pkgs/development/go-modules/generic/default.nix:68:3

the problem is not the name but the goDeps for some reason.

help?!

/nix/store/csqbl4ibvlgs01cfcd6f0zxgbvc4wfij-nixos-16.09.680.4e14fd5/nixos/pkgs/development/go-modules/generic/default.nix

     1  { go, govers, parallel, lib, fetchgit, fetchhg }:
     2
     3  { name, buildInputs ? [], nativeBuildInputs ? [], passthru ? {}, preFixup ? ""
     4
     5  # We want parallel builds by default
     6  , enableParallelBuilding ? true
     7
     8  # Disabled flag
     9  , disabled ? false
    10
    11  # Go import path of the package
    12  , goPackagePath
    13
    14  # Go package aliases
    15  , goPackageAliases ? [ ]
    16
    17  # Extra sources to include in the gopath
    18  , extraSrcs ? [ ]
    19
    20  # go2nix dependency file
    21  , goDeps ? null
    22
    23  , dontRenameImports ? false
    24
    25  # Do not enable this without good reason
    26  # IE: programs coupled with the compiler
    27  , allowGoReference ? false
    28
    29  , meta ? {}, ... } @ args':
    30
    31  if disabled then throw "${name} not supported for go ${go.meta.branch}" else
    32
    33  with builtins;
    34
    35  let
    36    args = lib.filterAttrs (name: _: name != "extraSrcs") args';
    37
    38    removeReferences = [ ] ++ lib.optional (!allowGoReference) go;
    39
    40    removeExpr = refs: lib.flip lib.concatMapStrings refs (ref: ''
    41      | sed "s,${ref},$(echo "${ref}" | sed "s,$NIX_STORE/[^-]*,$NIX_STORE/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,"),g" \
    42    '');
    43
    44    dep2src = goDep:
    45      {
    46        inherit (goDep) goPackagePath;
    47        src = if goDep.fetch.type == "git" then
    48          fetchgit {
    49            inherit (goDep.fetch) url rev sha256;
    50          }
    51        else if goDep.fetch.type == "hg" then
    52          fetchhg {
    53            inherit (goDep.fetch) url rev sha256;
    54          }
    55        else abort "Unrecognized package fetch type";
    56      };
    57
    58    importGodeps = { depsFile }:
    59      map dep2src (import depsFile);
    60
    61    goPath = if goDeps != null then importGodeps { depsFile = goDeps; } ++ extraSrcs
    62                               else extraSrcs;
    63  in
    64
    65  go.stdenv.mkDerivation (
    66    (builtins.removeAttrs args [ "goPackageAliases" "disabled" ]) // {
    67
    68    name = "go${go.meta.branch}-${name}";
    69    nativeBuildInputs = [ go parallel ]
    70      ++ (lib.optional (!dontRenameImports) govers) ++ nativeBuildInputs;
    71    buildInputs = [ go ] ++ buildInputs;
    72
    73    configurePhase = args.configurePhase or ''
    74      runHook preConfigure
    75
    76      # Extract the source

default.nix

{ pkgs ? import <nixpkgs> {} }:

let 
  stdenv = pkgs.stdenv;
  buildGoPackage = pkgs.buildGoPackage;
  fetchgit = pkgs.fetchgit;
  fetchhg = pkgs.fetchhg;
  fetchbzr = pkgs.fetchbzr; 
  fetchsvn = pkgs.fetchsvn;
in

buildGoPackage rec {
  name = "";
  version = "20161024-${stdenv.lib.strings.substring 0 7 rev}";
  rev = "6159f49025fd5500e5c2cf8ceeca4295e72c1de5";

  goPackagePath = "/home/joachim/Desktop/projects/fablab/robin";

  goDeps = import ./deps.nix { inherit fetchgit fetchhg fetchbzr fetchsvn; };

  meta = {
  };
}

deps.nix

# This file was generated by go2nix.
{ fetchgit, fetchhg, fetchbzr, fetchsvn }:
[
  {
    goPackagePath = "github.com/fatih/structs";
  src = fetchgit {
      url = "https://github.com/fatih/structs";
      rev = "dc3312cb1a4513a366c4c9e622ad55c32df12ed3";
      sha256 = "0wgm6shjf6pzapqphs576dv7rnajgv580rlp0n08zbg6fxf544cd";
    };
  }
  {
    goPackagePath = "github.com/influxdata/influxdb";
    src = fetchgit {
      url = "https://github.com/influxdata/influxdb";
      rev = "6fa145943a9723f9660586450f4cdcf72a801816";
      sha256 = "14ggx1als2hz0227xlps8klhn5s478kczqx6i6l66pxidmqz1d61";
    };
  }
]

from go2nix.

kamilchm avatar kamilchm commented on May 27, 2024

Your deps.nix looks like it was generated before NixOS/nixpkgs#18487
If you try to generate it with the current go2nix master there shouldn't be function calls inside and your:

src = fetchgit {
...
}

should looks like:

fetch = {
  type = "git";
...
}

See https://github.com/kamilchm/go2nix/blob/master/deps.nix for full example.

Newest go2nix save should do it that way.

from go2nix.

qknight avatar qknight commented on May 27, 2024

i'm using 1.1.1 and it works now. thank you so much!

i modified the files a little to work with nix-shell:

default.nix

{ pkgs ? import <nixpkgs>{} } :
let 
  stdenv = pkgs.stdenv;
  buildGoPackage = pkgs.buildGoPackage;
  fetchgit = pkgs.fetchgit;
  fetchhg = pkgs.fetchhg;
  fetchbzr = pkgs.fetchbzr; 
  fetchsvn = pkgs.fetchsvn;
in

buildGoPackage rec {
  name = "robin-${version}";
  version = "20161024-${stdenv.lib.strings.substring 0 7 rev}";
  rev = "6159f49025fd5500e5c2cf8ceeca4295e72c1de5";

  goPackagePath = "/home/joachim/Desktop/projects/fablab/robin";

  src = ./.;

  goDeps = ./deps.nix;

  # TODO: add metadata https://nixos.org/nixpkgs/manual/#sec-standard-meta-attributes
  meta = {
  };
}

deps.nix

# This file was generated by go2nix.
[
  {
    goPackagePath = "github.com/fatih/structs";
    fetch = {
      type = "git";
      url = "https://github.com/fatih/structs";
      rev = "dc3312cb1a4513a366c4c9e622ad55c32df12ed3";
      sha256 = "0wgm6shjf6pzapqphs576dv7rnajgv580rlp0n08zbg6fxf544cd";
    };
  }
  {
    goPackagePath = "github.com/influxdata/influxdb";
    fetch = {
      type = "git";
      url = "https://github.com/influxdata/influxdb";
      rev = "6fa145943a9723f9660586450f4cdcf72a801816";
      sha256 = "14ggx1als2hz0227xlps8klhn5s478kczqx6i6l66pxidmqz1d61";
    };
  }
]

nix-shell

these derivations will be built:
  /nix/store/69ffghbk16v5yg1jqjzb74i8d5kigaia-structs-dc3312c.drv
  /nix/store/zq6dyc0yhdq0yccr9fb772cfgls0rx3q-influxdb-6fa1459.drv
building path(s) ‘/nix/store/vsp4lqiwpns5358g10wzjdd9rmnhab3m-influxdb-6fa1459’
building path(s) ‘/nix/store/kkl2mwm2saynnzxc3k5j45qdbrp1lcss-structs-dc3312c’
exporting https://github.com/fatih/structs (rev dc3312cb1a4513a366c4c9e622ad55c32df12ed3) into /nix/store/kkl2mwm2saynnzxc3k5j45qdbrp1lcss-structs-dc3312c
exporting https://github.com/influxdata/influxdb (rev 6fa145943a9723f9660586450f4cdcf72a801816) into /nix/store/vsp4lqiwpns5358g10wzjdd9rmnhab3m-influxdb-6fa1459
Initialized empty Git repository in /nix/store/kkl2mwm2saynnzxc3k5j45qdbrp1lcss-structs-dc3312c/.git/
Initialized empty Git repository in /nix/store/vsp4lqiwpns5358g10wzjdd9rmnhab3m-influxdb-6fa1459/.git/
remote: Counting objects: 13, done.        
remote: Compressing objects: 100% (13/13), done.        
remote: Total 13 (delta 0), reused 4 (delta 0), pack-reused 0        
From https://github.com/fatih/structs
 * branch            HEAD       -> FETCH_HEAD
Switched to a new branch 'fetchgit'
removing `.git'...
remote: Counting objects: 61815, done.        
remote: Compressing objects: 100% (10/10), done.        
remote: Total 61815 (delta 1), reused 0 (delta 0), pack-reused 61805        
Receiving objects: 100% (61815/61815), 45.35 MiB | 7.81 MiB/s, done.
Resolving deltas: 100% (42352/42352), done.
From https://github.com/influxdata/influxdb
 * [new branch]      0.11                    -> origin/0.11
 * [new branch]      0.12                    -> origin/0.12
 * [new branch]      0.13                    -> origin/0.13
 * [new branch]      0.9.1                   -> origin/0.9.1
 * [new branch]      0.9.2                   -> origin/0.9.2
 * [new branch]      0.9.3                   -> origin/0.9.3
 * [new branch]      0.9.4                   -> origin/0.9.4
 * [new branch]      0.9.5                   -> origin/0.9.5
 * [new branch]      0.9.6                   -> origin/0.9.6
 * [new branch]      1.0                     -> origin/1.0
 * [new branch]      2016-08-15--reduce-allocs-models-point -> origin/2016-08-15--reduce-allocs-models-point
 * [new branch]      2016-08-22-reduce-heap-usage-models -> origin/2016-08-22-reduce-heap-usage-models
 * [new branch]      2016-08-23-sharded-parallel-cache-map -> origin/2016-08-23-sharded-parallel-cache-map
 * [new branch]      2016-09-26-fix-data-race-in-write-path -> origin/2016-09-26-fix-data-race-in-write-path
 * [new branch]      2016-09-26-fix-varint-encoder-segfault -> origin/2016-09-26-fix-varint-encoder-segfault
 * [new branch]      backfill                -> origin/backfill
 * [new branch]      broker-log-inspector    -> origin/broker-log-inspector
 * [new branch]      cjl-7488-fix-rp-defaults -> origin/cjl-7488-fix-rp-defaults
 * [new branch]      cjl-cluster-integration-tests -> origin/cjl-cluster-integration-tests
 * [new branch]      cjl-go-vet-composite    -> origin/cjl-go-vet-composite
 * [new branch]      cjl-meta-service-client -> origin/cjl-meta-service-client
 * [new branch]      cluster-user-integration-tests -> origin/cluster-user-integration-tests
 * [new branch]      detect-pre-sorted-indexentries -> origin/detect-pre-sorted-indexentries
 * [new branch]      dgn-fix-4574            -> origin/dgn-fix-4574
 * [new branch]      dgn-meta-rpc            -> origin/dgn-meta-rpc
 * [new branch]      dgn-tsm-wal-inspect     -> origin/dgn-tsm-wal-inspect
 * [new branch]      dn-fix-select-permissions-2 -> origin/dn-fix-select-permissions-2
 * [new branch]      drop_one_drop_all       -> origin/drop_one_drop_all
 * [new branch]      engine_done             -> origin/engine_done
 * [new branch]      er-cache                -> origin/er-cache
 * [new branch]      er-comp-wg-race         -> origin/er-comp-wg-race
 * [new branch]      er-delete-shard         -> origin/er-delete-shard
 * [new branch]      er-engine-panic         -> origin/er-engine-panic
 * [new branch]      er-escape-backslash     -> origin/er-escape-backslash
 * [new branch]      er-hll-proposal         -> origin/er-hll-proposal
 * [new branch]      er-qe-pool              -> origin/er-qe-pool
 * [new branch]      er-time                 -> origin/er-time
 * [new branch]      flatbuf2                -> origin/flatbuf2
 * [new branch]      ga-admin-v0.9.5         -> origin/ga-admin-v0.9.5
 * [new branch]      ga-client               -> origin/ga-client
 * [new branch]      ga-graphite-readme      -> origin/ga-graphite-readme
 * [new branch]      ga-init-background      -> origin/ga-init-background
 * [new branch]      ga-json-no-exponent     -> origin/ga-json-no-exponent
 * [new branch]      ga-multiple-httpd       -> origin/ga-multiple-httpd
 * [new branch]      ga-no-query-log         -> origin/ga-no-query-log
 * [new branch]      influxast               -> origin/influxast
 * [new branch]      jl-conversion-series    -> origin/jl-conversion-series
 * [new branch]      jl-deletes              -> origin/jl-deletes
 * [new branch]      jl-export-doc           -> origin/jl-export-doc
 * [new branch]      js-3552-mathematics-across-measurements -> origin/js-3552-mathematics-across-measurements
 * [new branch]      js-4619-subqueries      -> origin/js-4619-subqueries
 * [new branch]      js-5266-having-clause   -> origin/js-5266-having-clause
 * [new branch]      js-5943-queries-access-closest-point-before-query -> origin/js-5943-queries-access-closest-point-before-query
 * [new branch]      js-6704-first-last-optimization -> origin/js-6704-first-last-optimization
 * [new branch]      js-6846-nan-values-from-derivative -> origin/js-6846-nan-values-from-derivative
 * [new branch]      js-7036-structured-logging -> origin/js-7036-structured-logging
 * [new branch]      js-7040-ignore-sigpipe-signal -> origin/js-7040-ignore-sigpipe-signal
 * [new branch]      js-7303-lazy-iterators  -> origin/js-7303-lazy-iterators
 * [new branch]      js-858-storage-disk-threshold -> origin/js-858-storage-disk-threshold
 * [new branch]      js-faster-first-last-aggregates -> origin/js-faster-first-last-aggregates
 * [new branch]      js-fine-grained-authorization -> origin/js-fine-grained-authorization
 * [new branch]      js-man-pages            -> origin/js-man-pages
 * [new branch]      js-msgpack-handler      -> origin/js-msgpack-handler
 * [new branch]      js-nil-key-cursor-for-sparse-data -> origin/js-nil-key-cursor-for-sparse-data
 * [new branch]      js-normalize-time       -> origin/js-normalize-time
 * [new branch]      js-parallel-database-deletes -> origin/js-parallel-database-deletes
 * [new branch]      js-partial-in-json-response -> origin/js-partial-in-json-response
 * [new branch]      js-query-executor-lock  -> origin/js-query-executor-lock
 * [new branch]      js-query-executor-return-query-id -> origin/js-query-executor-return-query-id
 * [new branch]      js-return-statement-id-with-query-result -> origin/js-return-statement-id-with-query-result
 * [new branch]      js-rollups              -> origin/js-rollups
 * [new branch]      js-switch-to-posix-flags -> origin/js-switch-to-posix-flags
 * [new branch]      jw-7330                 -> origin/jw-7330
 * [new branch]      jw-7391                 -> origin/jw-7391
 * [new branch]      jw-bootstrap            -> origin/jw-bootstrap
 * [new branch]      jw-cardinality          -> origin/jw-cardinality
 * [new branch]      jw-cardinality-index    -> origin/jw-cardinality-index
 * [new branch]      jw-db-index             -> origin/jw-db-index
 * [new branch]      jw-delete-shard         -> origin/jw-delete-shard
 * [new branch]      jw-max-tag-cardinality  -> origin/jw-max-tag-cardinality
 * [new branch]      jw-meta-queries         -> origin/jw-meta-queries
 * [new branch]      jw-revert               -> origin/jw-revert
 * [new branch]      jw-shard-limiter        -> origin/jw-shard-limiter
 * [new branch]      jw-stats                -> origin/jw-stats
 * [new branch]      jw-tsm-wal-inspect      -> origin/jw-tsm-wal-inspect
 * [new branch]      master                  -> origin/master
 * [new branch]      md-data-race            -> origin/md-data-race
 * [new branch]      meta-service            -> origin/meta-service
 * [new branch]      meta-startup            -> origin/meta-startup
 * [new branch]      mr-debug-package        -> origin/mr-debug-package
 * [new branch]      mr-influx_inspect-help-verify -> origin/mr-influx_inspect-help-verify
 * [new branch]      multi_field_agg         -> origin/multi_field_agg
 * [new branch]      p0-7-3                  -> origin/p0-7-3
 * [new branch]      package-fix             -> origin/package-fix
 * [new branch]      package-updates         -> origin/package-updates
 * [new branch]      pd-add-no-recovery-to-096 -> origin/pd-add-no-recovery-to-096
 * [new branch]      pd-fix-rewrite-file     -> origin/pd-fix-rewrite-file
 * [new branch]      pd-remove-http-panic-recover -> origin/pd-remove-http-panic-recover
 * [new branch]      pd-tsi-proposal         -> origin/pd-tsi-proposal
 * [new branch]      pd-tsm-file-size-limit  -> origin/pd-tsm-file-size-limit
 * [new branch]      pd-tsm-fix-compaction-size -> origin/pd-tsm-fix-compaction-size
 * [new branch]      pd-write-updates        -> origin/pd-write-updates
 * [new branch]      performance-debugging   -> origin/performance-debugging
 * [new branch]      points-sort             -> origin/points-sort
 * [new branch]      racy_drop_server        -> origin/racy_drop_server
 * [new branch]      rename-internal-refs    -> origin/rename-internal-refs
 * [new branch]      revert-6730-jl-date-fix -> origin/revert-6730-jl-date-fix
 * [new branch]      ross-build-updates      -> origin/ross-build-updates
 * [new branch]      ross-golang-update      -> origin/ross-golang-update
 * [new branch]      ross-makefile-poc       -> origin/ross-makefile-poc
 * [new branch]      saw                     -> origin/saw
 * [new branch]      shard-dump              -> origin/shard-dump
 * [new branch]      shard-key-ids           -> origin/shard-key-ids
 * [new branch]      sharded-cache-map       -> origin/sharded-cache-map
 * [new branch]      slab-cache              -> origin/slab-cache
 * [new branch]      slack-proxy             -> origin/slack-proxy
 * [new branch]      string-interning        -> origin/string-interning
 * [new branch]      tsi                     -> origin/tsi
 * [new branch]      tsm1                    -> origin/tsm1
 * [new branch]      v0.8.8                  -> origin/v0.8.8
 * [new branch]      v0.8.9                  -> origin/v0.8.9
 * [new branch]      wip--write-path--presort-and-sharding -> origin/wip--write-path--presort-and-sharding
 * [new tag]         v0.0.1                  -> v0.0.1
 * [new tag]         v0.0.2                  -> v0.0.2
 * [new tag]         v0.0.3                  -> v0.0.3
 * [new tag]         v0.0.4                  -> v0.0.4
 * [new tag]         v0.0.5                  -> v0.0.5
 * [new tag]         v0.0.6                  -> v0.0.6
 * [new tag]         v0.0.7                  -> v0.0.7
 * [new tag]         v0.0.8                  -> v0.0.8
 * [new tag]         v0.0.9                  -> v0.0.9
 * [new tag]         v0.1.0                  -> v0.1.0
 * [new tag]         v0.1.1.rc1              -> v0.1.1.rc1
 * [new tag]         v0.1.1.rc3              -> v0.1.1.rc3
 * [new tag]         v0.1.1.rc4              -> v0.1.1.rc4
 * [new tag]         v0.1.1.rc5              -> v0.1.1.rc5
 * [new tag]         v0.1.1.rc6              -> v0.1.1.rc6
 * [new tag]         v0.10.0                 -> v0.10.0
 * [new tag]         v0.10.0-beta1           -> v0.10.0-beta1
 * [new tag]         v0.10.0-beta2           -> v0.10.0-beta2
 * [new tag]         v0.10.0-rc1             -> v0.10.0-rc1
 * [new tag]         v0.10.0-rc2             -> v0.10.0-rc2
 * [new tag]         v0.10.1                 -> v0.10.1
 * [new tag]         v0.10.2                 -> v0.10.2
 * [new tag]         v0.10.3                 -> v0.10.3
 * [new tag]         v0.11.0                 -> v0.11.0
 * [new tag]         v0.11.0-rc1             -> v0.11.0-rc1
 * [new tag]         v0.11.1                 -> v0.11.1
 * [new tag]         v0.12.0                 -> v0.12.0
 * [new tag]         v0.12.1                 -> v0.12.1
 * [new tag]         v0.12.2                 -> v0.12.2
 * [new tag]         v0.13.0                 -> v0.13.0
 * [new tag]         v0.13.0-rc1             -> v0.13.0-rc1
 * [new tag]         v0.13.0-rc2             -> v0.13.0-rc2
 * [new tag]         v0.2.0                  -> v0.2.0
 * [new tag]         v0.3.0                  -> v0.3.0
 * [new tag]         v0.3.1                  -> v0.3.1
 * [new tag]         v0.3.2                  -> v0.3.2
 * [new tag]         v0.4.0                  -> v0.4.0
 * [new tag]         v0.4.0.rc1              -> v0.4.0.rc1
 * [new tag]         v0.4.0.rc2              -> v0.4.0.rc2
 * [new tag]         v0.4.0.rc3              -> v0.4.0.rc3
 * [new tag]         v0.4.0.rc4              -> v0.4.0.rc4
 * [new tag]         v0.4.0.rc5              -> v0.4.0.rc5
 * [new tag]         v0.4.0.rc6              -> v0.4.0.rc6
 * [new tag]         v0.4.0.rc7              -> v0.4.0.rc7
 * [new tag]         v0.4.1                  -> v0.4.1
 * [new tag]         v0.4.2                  -> v0.4.2
 * [new tag]         v0.4.3                  -> v0.4.3
 * [new tag]         v0.4.4                  -> v0.4.4
 * [new tag]         v0.5.0                  -> v0.5.0
 * [new tag]         v0.5.0-rc.1             -> v0.5.0-rc.1
 * [new tag]         v0.5.0-rc.2             -> v0.5.0-rc.2
 * [new tag]         v0.5.0-rc.3             -> v0.5.0-rc.3
 * [new tag]         v0.5.0-rc.4             -> v0.5.0-rc.4
 * [new tag]         v0.5.0-rc.5             -> v0.5.0-rc.5
 * [new tag]         v0.5.0-rc.6             -> v0.5.0-rc.6
 * [new tag]         v0.5.1                  -> v0.5.1
 * [new tag]         v0.5.10                 -> v0.5.10
 * [new tag]         v0.5.11                 -> v0.5.11
 * [new tag]         v0.5.12                 -> v0.5.12
 * [new tag]         v0.5.2                  -> v0.5.2
 * [new tag]         v0.5.3                  -> v0.5.3
 * [new tag]         v0.5.4                  -> v0.5.4
 * [new tag]         v0.5.5                  -> v0.5.5
 * [new tag]         v0.5.6                  -> v0.5.6
 * [new tag]         v0.5.7                  -> v0.5.7
 * [new tag]         v0.5.8                  -> v0.5.8
 * [new tag]         v0.5.9                  -> v0.5.9
 * [new tag]         v0.6.0                  -> v0.6.0
 * [new tag]         v0.6.1                  -> v0.6.1
 * [new tag]         v0.6.2                  -> v0.6.2
 * [new tag]         v0.6.3                  -> v0.6.3
 * [new tag]         v0.6.4                  -> v0.6.4
 * [new tag]         v0.6.5                  -> v0.6.5
 * [new tag]         v0.7.0                  -> v0.7.0
 * [new tag]         v0.7.1                  -> v0.7.1
 * [new tag]         v0.7.2                  -> v0.7.2
 * [new tag]         v0.7.3                  -> v0.7.3
 * [new tag]         v0.8.0                  -> v0.8.0
 * [new tag]         v0.8.0-rc.1             -> v0.8.0-rc.1
 * [new tag]         v0.8.0-rc.2             -> v0.8.0-rc.2
 * [new tag]         v0.8.0-rc.3             -> v0.8.0-rc.3
 * [new tag]         v0.8.0-rc.4             -> v0.8.0-rc.4
 * [new tag]         v0.8.0-rc.5             -> v0.8.0-rc.5
 * [new tag]         v0.8.1                  -> v0.8.1
 * [new tag]         v0.8.2                  -> v0.8.2
 * [new tag]         v0.8.3                  -> v0.8.3
 * [new tag]         v0.8.4                  -> v0.8.4
 * [new tag]         v0.8.4-rc.1             -> v0.8.4-rc.1
 * [new tag]         v0.8.5                  -> v0.8.5
 * [new tag]         v0.8.6                  -> v0.8.6
 * [new tag]         v0.8.7                  -> v0.8.7
 * [new tag]         v0.8.8                  -> v0.8.8
 * [new tag]         v0.9.0                  -> v0.9.0
 * [new tag]         v0.9.0-rc10             -> v0.9.0-rc10
 * [new tag]         v0.9.0-rc11             -> v0.9.0-rc11
 * [new tag]         v0.9.0-rc12             -> v0.9.0-rc12
 * [new tag]         v0.9.0-rc13             -> v0.9.0-rc13
 * [new tag]         v0.9.0-rc14             -> v0.9.0-rc14
 * [new tag]         v0.9.0-rc15             -> v0.9.0-rc15
 * [new tag]         v0.9.0-rc16             -> v0.9.0-rc16
 * [new tag]         v0.9.0-rc17             -> v0.9.0-rc17
 * [new tag]         v0.9.0-rc18             -> v0.9.0-rc18
 * [new tag]         v0.9.0-rc19             -> v0.9.0-rc19
 * [new tag]         v0.9.0-rc2              -> v0.9.0-rc2
 * [new tag]         v0.9.0-rc20             -> v0.9.0-rc20
 * [new tag]         v0.9.0-rc21             -> v0.9.0-rc21
 * [new tag]         v0.9.0-rc22             -> v0.9.0-rc22
 * [new tag]         v0.9.0-rc23             -> v0.9.0-rc23
 * [new tag]         v0.9.0-rc24             -> v0.9.0-rc24
 * [new tag]         v0.9.0-rc25             -> v0.9.0-rc25
 * [new tag]         v0.9.0-rc26             -> v0.9.0-rc26
 * [new tag]         v0.9.0-rc27             -> v0.9.0-rc27
 * [new tag]         v0.9.0-rc28             -> v0.9.0-rc28
 * [new tag]         v0.9.0-rc29             -> v0.9.0-rc29
 * [new tag]         v0.9.0-rc3              -> v0.9.0-rc3
 * [new tag]         v0.9.0-rc30             -> v0.9.0-rc30
 * [new tag]         v0.9.0-rc31             -> v0.9.0-rc31
 * [new tag]         v0.9.0-rc32             -> v0.9.0-rc32
 * [new tag]         v0.9.0-rc33             -> v0.9.0-rc33
 * [new tag]         v0.9.0-rc4              -> v0.9.0-rc4
 * [new tag]         v0.9.0-rc5              -> v0.9.0-rc5
 * [new tag]         v0.9.0-rc6              -> v0.9.0-rc6
 * [new tag]         v0.9.0-rc7              -> v0.9.0-rc7
 * [new tag]         v0.9.0-rc8              -> v0.9.0-rc8
 * [new tag]         v0.9.0-rc9              -> v0.9.0-rc9
 * [new tag]         v0.9.1                  -> v0.9.1
 * [new tag]         v0.9.1-rc1              -> v0.9.1-rc1
 * [new tag]         v0.9.1-rc2              -> v0.9.1-rc2
 * [new tag]         v0.9.2                  -> v0.9.2
 * [new tag]         v0.9.2-rc1              -> v0.9.2-rc1
 * [new tag]         v0.9.2.1                -> v0.9.2.1
 * [new tag]         v0.9.3                  -> v0.9.3
 * [new tag]         v0.9.3-rc1              -> v0.9.3-rc1
 * [new tag]         v0.9.3-rc2              -> v0.9.3-rc2
 * [new tag]         v0.9.3-rc3              -> v0.9.3-rc3
 * [new tag]         v0.9.4                  -> v0.9.4
 * [new tag]         v0.9.4-rc1              -> v0.9.4-rc1
 * [new tag]         v0.9.4.1                -> v0.9.4.1
 * [new tag]         v0.9.4.2                -> v0.9.4.2
 * [new tag]         v0.9.5                  -> v0.9.5
 * [new tag]         v0.9.5-rc1              -> v0.9.5-rc1
 * [new tag]         v0.9.5-rc2              -> v0.9.5-rc2
 * [new tag]         v0.9.5-rc3              -> v0.9.5-rc3
 * [new tag]         v0.9.5.1                -> v0.9.5.1
 * [new tag]         v0.9.6                  -> v0.9.6
 * [new tag]         v0.9.6-rc1              -> v0.9.6-rc1
 * [new tag]         v0.9.6-rc2              -> v0.9.6-rc2
 * [new tag]         v0.9.6.1                -> v0.9.6.1
 * [new tag]         v1.0.0                  -> v1.0.0
 * [new tag]         v1.0.0-beta1            -> v1.0.0-beta1
 * [new tag]         v1.0.0-beta2            -> v1.0.0-beta2
 * [new tag]         v1.0.0-beta3            -> v1.0.0-beta3
 * [new tag]         v1.0.0-rc1              -> v1.0.0-rc1
 * [new tag]         v1.0.0-rc2              -> v1.0.0-rc2
 * [new tag]         v1.0.1                  -> v1.0.1
 * [new tag]         v1.0.2                  -> v1.0.2
Switched to a new branch 'fetchgit'
removing `.git'...

go run inject_into_fluxdb.go

from go2nix.

kamilchm avatar kamilchm commented on May 27, 2024

the nix-shell log you showed is ok or is there stiil something wrong?

from go2nix.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.