Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7d928f6be620
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fc42a76d93fc
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Nov 27, 2018

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    fc42a76 View commit details
Showing with 106 additions and 0 deletions.
  1. +30 −0 pkgs/servers/echoip/default.nix
  2. +74 −0 pkgs/servers/echoip/deps.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
30 changes: 30 additions & 0 deletions pkgs/servers/echoip/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
name = "echoip-${version}";
version = "unstable-2018-11-20";

goPackagePath = "github.com/mpolden/echoip";

src = fetchFromGitHub {
owner = "mpolden";
repo = "echoip";
rev = "4bfaf671b9f75a7b2b37543b2991401cbf57f1f0";
sha256 = "0n5d9i8cc5lqgy5apqd3zhyl3h1xjacf612z8xpvbm75jnllcvxy";
};

goDeps = ./deps.nix;

outputs = [ "bin" "out" ];

postInstall = ''
mkdir -p $out
cp $src/index.html $out/index.html
'';

meta = with lib; {
homepage = https://github.com/mpolden/echoip;
license = licenses.bsd3;
maintainers = with maintainers; [ rvolosatovs ];
};
}
74 changes: 74 additions & 0 deletions pkgs/servers/echoip/deps.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -16370,6 +16370,8 @@ with pkgs;

eaglemode = callPackage ../applications/misc/eaglemode { };

echoip = callPackage ../servers/echoip { };

eclipses = recurseIntoAttrs (callPackage ../applications/editors/eclipse {
jdk = jdk11;
});