Web-based Calendar Aggregator
https://ticker.c3d2.de/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
53 lines
1.1 KiB
{ mozillaOverlay ? import <mozillaOverlay>, |
|
rustManifest ? ./channel-rust-nightly.toml, |
|
}: |
|
|
|
let |
|
pkgs = import <nixpkgs> { overlays = [ mozillaOverlay ]; }; |
|
in |
|
|
|
with pkgs; |
|
|
|
let |
|
rustChannelOfTargets = _channel: _date: |
|
(pkgs.lib.rustLib.fromManifestFile rustManifest { |
|
inherit (pkgs) stdenv fetchurl patchelf; |
|
}).rust; |
|
rust = |
|
rustChannelOfTargets "nightly" null; |
|
rustPlatform = pkgs.recurseIntoAttrs (pkgs.makeRustPlatform { |
|
rustc = rust; |
|
cargo = rust; |
|
}); |
|
|
|
cargoSha256 = "0igr8k46yl5a89zjymp6914faawcvqza08h6l9pcplpikhbvls42"; |
|
|
|
ticker-update = rustPlatform.buildRustPackage { |
|
name = "ticker-update"; |
|
src = ./.; |
|
buildInputs = [ |
|
pkg-config openssl postgresql.lib |
|
rust |
|
]; |
|
preBuild = "pushd ticker-update"; |
|
postBuild = "popd"; |
|
inherit cargoSha256; |
|
}; |
|
|
|
ticker-serve = rustPlatform.buildRustPackage { |
|
name = "ticker-serve"; |
|
src = ./.; |
|
buildInputs = [ |
|
pkg-config openssl postgresql.lib |
|
rust |
|
]; |
|
preBuild = "pushd ticker-serve"; |
|
postBuild = "popd"; |
|
inherit cargoSha256; |
|
}; |
|
in { |
|
inherit |
|
rustPlatform |
|
ticker-update |
|
ticker-serve; |
|
}
|
|
|