Commit 52d9413b authored by Robert Schütz's avatar Robert Schütz
Browse files

graphite-cli: mark unfree

Version 1 has no published source and doesn't specify a license.
parent 728bae02
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -97,7 +97,7 @@ final: prev: {
  };


  graphite-cli = prev."@withgraphite/graphite-cli".override {
  graphite-cli = prev."@withgraphite/graphite-cli".override (old: {
    name = "graphite-cli";
    nativeBuildInputs = with pkgs; [ installShellFiles pkg-config ];
    buildInputs = with pkgs; [ cairo pango pixman ];
@@ -108,7 +108,10 @@ final: prev: {
        --bash <($out/bin/gt completion) \
        --zsh <(ZSH_NAME=zsh $out/bin/gt completion)
    '';
    meta = old.meta // {
      license = lib.licenses.unfree; # no license specified
    };
  });

  graphql-language-service-cli = prev.graphql-language-service-cli.override {
    nativeBuildInputs = [ pkgs.buildPackages.makeWrapper ];