forked from mirrors/nixpkgs
25 lines
646 B
Nix
25 lines
646 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|