pkgs.go -> pkgs.go-shortener

This commit is contained in:
lassulus 2016-10-27 14:47:21 +02:00
parent c091949a15
commit 38a6281fbd
4 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ let
wantedBy = [ "multi-user.target" ];
path = with pkgs; [
go
go-shortener
];
environment = {
@ -57,7 +57,7 @@ let
serviceConfig = {
User = "go";
Restart = "always";
ExecStart = "${pkgs.go}/bin/go";
ExecStart = "${pkgs.go-shortener}/bin/go";
};
};
};

View File

@ -19,7 +19,7 @@ let
};
in np.buildNodePackage {
name = "go";
name = "go-shortener";
src = fetchgit {
url = "http://cgit.lassul.us/go/";

View File

@ -3,7 +3,7 @@
with import <stockholm/lib>;
{
environment.systemPackages = [
pkgs.go
pkgs.go-shortener
];
krebs.go = {
enable = true;