mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
parent
6828c027d1
commit
33f2784b7c
2 changed files with 96 additions and 98 deletions
|
@ -294,7 +294,7 @@ in
|
||||||
] ./ceph-single-node-bluestore-dmcrypt.nix { };
|
] ./ceph-single-node-bluestore-dmcrypt.nix { };
|
||||||
certmgr = handleTest ./certmgr.nix { };
|
certmgr = handleTest ./certmgr.nix { };
|
||||||
cfssl = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./cfssl.nix { };
|
cfssl = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./cfssl.nix { };
|
||||||
cgit = handleTest ./cgit.nix { };
|
cgit = runTest ./cgit.nix;
|
||||||
charliecloud = handleTest ./charliecloud.nix { };
|
charliecloud = handleTest ./charliecloud.nix { };
|
||||||
chromadb = runTest ./chromadb.nix;
|
chromadb = runTest ./chromadb.nix;
|
||||||
chromium = (handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./chromium.nix { }).stable or { };
|
chromium = (handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./chromium.nix { }).stable or { };
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
import ./make-test-python.nix (
|
{ pkgs, ... }:
|
||||||
{ pkgs, ... }:
|
let
|
||||||
let
|
|
||||||
robotsTxt = pkgs.writeText "cgit-robots.txt" ''
|
robotsTxt = pkgs.writeText "cgit-robots.txt" ''
|
||||||
User-agent: *
|
User-agent: *
|
||||||
Disallow: /
|
Disallow: /
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
name = "cgit";
|
name = "cgit";
|
||||||
meta = with pkgs.lib.maintainers; {
|
meta = with pkgs.lib.maintainers; {
|
||||||
maintainers = [ schnusch ];
|
maintainers = [ schnusch ];
|
||||||
|
@ -109,5 +108,4 @@ import ./make-test-python.nix (
|
||||||
"curl -fsS 'http://localhost/%28c%29git/some-repo/about/' | grep -F 'cgit NixOS Test at'"
|
"curl -fsS 'http://localhost/%28c%29git/some-repo/about/' | grep -F 'cgit NixOS Test at'"
|
||||||
)
|
)
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
)
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue