Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

caddy: build only with go 1.6 #14709

Merged
merged 1 commit into from
Apr 15, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ in

cabal2nix = self.haskellPackages.cabal2nix;

caddy = goPackages.caddy.bin // { outputs = [ "bin" ]; };
caddy = go16Packages.caddy.bin // { outputs = [ "bin" ]; };

capstone = callPackage ../development/libraries/capstone { };

Expand Down Expand Up @@ -696,7 +696,7 @@ in
cpulimit = callPackage ../tools/misc/cpulimit { };

contacts = callPackage ../tools/misc/contacts { };

daemontools = callPackage ../tools/admin/daemontools { };

datamash = callPackage ../tools/misc/datamash { };
Expand Down
1 change: 1 addition & 0 deletions pkgs/top-level/go-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,7 @@ let
acme blackfriday crypto go-humanize go-shlex go-syslog
http-authentication lumberjack-v2 toml websocket yaml-v2
];
disabled = isGo14 || isGo15;
};

cascadia = buildGoPackage rec {
Expand Down