Merge pull request #116677 from alexarice/agda-test-hello-world
This commit is contained in:
commit
785d2c03a0
@ -3,8 +3,9 @@ import ./make-test-python.nix ({ pkgs, ... }:
|
|||||||
let
|
let
|
||||||
hello-world = pkgs.writeText "hello-world" ''
|
hello-world = pkgs.writeText "hello-world" ''
|
||||||
open import IO
|
open import IO
|
||||||
|
open import Level
|
||||||
|
|
||||||
main = run(putStrLn "Hello World!")
|
main = run {0ℓ} (putStrLn "Hello World!")
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Builder for Agda packages.
|
# Builder for Agda packages.
|
||||||
|
|
||||||
{ stdenv, lib, self, Agda, runCommandNoCC, makeWrapper, writeText, mkShell, ghcWithPackages }:
|
{ stdenv, lib, self, Agda, runCommandNoCC, makeWrapper, writeText, mkShell, ghcWithPackages, nixosTests }:
|
||||||
|
|
||||||
with lib.strings;
|
with lib.strings;
|
||||||
|
|
||||||
@ -18,7 +18,10 @@ let
|
|||||||
in runCommandNoCC "${pname}-${version}" {
|
in runCommandNoCC "${pname}-${version}" {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
passthru.unwrapped = Agda;
|
passthru = {
|
||||||
|
unwrapped = Agda;
|
||||||
|
tests = { inherit (nixosTests) agda; };
|
||||||
|
};
|
||||||
} ''
|
} ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
makeWrapper ${Agda}/bin/agda $out/bin/agda \
|
makeWrapper ${Agda}/bin/agda $out/bin/agda \
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, mkDerivation, fetchFromGitHub, ghcWithPackages }:
|
{ lib, mkDerivation, fetchFromGitHub, ghcWithPackages, nixosTests }:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "standard-library";
|
pname = "standard-library";
|
||||||
@ -19,6 +19,7 @@ mkDerivation rec {
|
|||||||
rm EverythingSafe.agda EverythingSafeGuardedness.agda EverythingSafeSizedTypes.agda
|
rm EverythingSafe.agda EverythingSafeGuardedness.agda EverythingSafeSizedTypes.agda
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru.tests = { inherit (nixosTests) agda; };
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary";
|
homepage = "https://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary";
|
||||||
description = "A standard library for use with the Agda compiler";
|
description = "A standard library for use with the Agda compiler";
|
||||||
|
Loading…
Reference in New Issue
Block a user