blob: 932b98c356609e63a0eb279f9c2665ce9f0aea81 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{ pkgs, ... }:
let inherit (pkgs) fetchurl;
in {
# https://gerrit.googlesource.com/plugins/owners
owners = fetchurl {
url = "https://storage.googleapis.com/tazjins-data/tvl/owners_3.2.jar";
sha256 = "1xw1q3g0353aw5jqxp69n85f8y57l2p51np37n8r34kzbn5r4iz7";
} // { name = "owners"; };
}
|