nixpkgs/pkgs/development/tools/remarshal/default.nix

25 lines
606 B
Nix
Raw Normal View History

2016-06-06 00:28:52 +00:00
{ lib, buildGoPackage, fetchFromGitHub }:
2015-11-16 11:59:30 +00:00
2016-06-06 00:28:52 +00:00
buildGoPackage rec {
2015-11-16 11:59:30 +00:00
name = "remarshal-${rev}";
rev = "0.3.0";
goPackagePath = "github.com/dbohdan/remarshal";
src = fetchFromGitHub {
rev = "v${rev}";
owner = "dbohdan";
repo = "remarshal";
sha256 = "0lhsqca3lq3xvdwsmrngv4p6b7k2lkbfnxnk5qj6jdd5y7f4b496";
};
2016-06-06 00:28:52 +00:00
goDeps = ./deps.json;
2015-11-16 11:59:30 +00:00
meta = with lib; {
description = "Convert between TOML, YAML and JSON";
license = licenses.mit;
homepage = https://github.com/dbohdan/remarshal;
maintainers = with maintainers; [ offline ];
platforms = platforms.linux;
2015-11-16 11:59:30 +00:00
};
}