influxdb: 0.8.3 -> 0.9.4, fix module
This commit is contained in:
24
pkgs/development/tools/remarshal/default.nix
Normal file
24
pkgs/development/tools/remarshal/default.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{ lib, goPackages, fetchFromGitHub }:
|
||||
|
||||
goPackages.buildGoPackage rec {
|
||||
name = "remarshal-${rev}";
|
||||
rev = "0.3.0";
|
||||
goPackagePath = "github.com/dbohdan/remarshal";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
rev = "v${rev}";
|
||||
owner = "dbohdan";
|
||||
repo = "remarshal";
|
||||
sha256 = "0lhsqca3lq3xvdwsmrngv4p6b7k2lkbfnxnk5qj6jdd5y7f4b496";
|
||||
};
|
||||
|
||||
buildInputs = with goPackages; [ toml yaml-v2 ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Convert between TOML, YAML and JSON";
|
||||
license = licenses.mit;
|
||||
homepage = https://github.com/dbohdan/remarshal;
|
||||
maintainers = with maintainers; [ offline ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user