changetower: init at 1.0
This commit is contained in:
parent
e1fb0c6afb
commit
df723cf939
25
pkgs/tools/networking/changetower/default.nix
Normal file
25
pkgs/tools/networking/changetower/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "changetower";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Dc4ts";
|
||||
repo = "ChangeTower";
|
||||
rev = "v${version}";
|
||||
sha256 = "058ccn6d5f7w268hfqh85bz1xj6ysgfrmyj0b4asjiskq7728v9z";
|
||||
};
|
||||
|
||||
vendorSha256 = "0hagskhwrdsl6s6hn27jriysbxhaz0pqq1h43j7v0ggnwd2s03bq";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tools to watch for webppage changes";
|
||||
homepage = "https://github.com/Dc4ts/ChangeTower";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -3956,6 +3956,8 @@ with pkgs;
|
||||
inherit (darwin.apple_sdk.frameworks) Foundation;
|
||||
};
|
||||
|
||||
changetower = callPackage ../tools/networking/changetower { };
|
||||
|
||||
checkbashisms = callPackage ../development/tools/misc/checkbashisms { };
|
||||
|
||||
civetweb = callPackage ../development/libraries/civetweb { };
|
||||
|
Loading…
Reference in New Issue
Block a user