12 lines
356 B
Nix
12 lines
356 B
Nix
{ buildGoApplication, fetchgit }:
|
|
|
|
buildGoApplication {
|
|
pname = "vodafone-station-exporter";
|
|
version = "0.0.1";
|
|
src = fetchgit {
|
|
url = "https://git.jalr.de/jalr/vodafone-station-exporter";
|
|
rev = "808564b940c3570e3b32ce60657bf83fda75ec3c";
|
|
hash = "sha256-A3Behy8Q7bhYXoGUsZXzIAQd/dTXH4d4wd+FDYuD7tE=";
|
|
};
|
|
modules = ./gomod2nix.toml;
|
|
}
|