changetower: init at 1.0

This commit is contained in:
Fabian Affolter 2021-08-23 19:10:08 +02:00
parent e1fb0c6afb
commit df723cf939
2 changed files with 27 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };