summary refs log blame commit diff
path: root/pkgs/development/tools/cue/default.nix
blob: 5170297a43308d0173c2ce2ba3185f549e14acc4 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                 


                   
                    



                                             
                                                                   

    
                                                                       
 

                  


                              
                                                                     


          

                                                                                                              
                     
                                 
    
 
{ buildGoModule, fetchgit, lib }:

buildGoModule rec {
  pname = "cue";
  version = "0.4.0";

  src = fetchgit {
    url = "https://cue.googlesource.com/cue";
    rev = "v${version}";
    sha256 = "sha256-rcGEl+CMFyxZKsOKhVimhv5/ONo3xS6FjgKModZGR2o=";
  };

  vendorSha256 = "sha256-eSKVlBgnHR1R0j1lNwtFoIgRuj8GqoMbvuBl/N1SanY=";

  doCheck = false;

  subPackages = [ "cmd/cue" ];

  buildFlagsArray = [
    "-ldflags=-s -w -X cuelang.org/go/cmd/cue/cmd.version=${version}"
  ];

  meta = {
    description = "A data constraint language which aims to simplify tasks involving defining and using data";
    homepage = "https://cuelang.org/";
    maintainers = [];
    license = lib.licenses.asl20;
  };
}