Compare commits

..

No commits in common. "f14f0ce9dba6943bfd7aa121322c9223e74000c0" and "9d8d3fa864edb5b7edb3946fc26c4ec1c7210cec" have entirely different histories.

5 changed files with 3 additions and 30 deletions

View file

@ -1,27 +0,0 @@
---
kind: pipeline
type: exec
name: abacus checks
steps:
- name: flake check
commands:
- nix flake check
- name: notifiy
commands:
- nix run .#matrix-notifier
environment:
ADDRESS:
from_secret: matrix_homeserver
ROOM:
from_secret: matrix_roomid
USER:
from_secret: matrix_username
PASS:
from_secret: matrix_password
when:
status:
- failure
- success
...

View file

@ -87,6 +87,7 @@
];
meta = with pkgs.lib; {
broken = true; # Only breaks under nix
description = "A simple calculator using big numbers";
homepage = "https://gitea.belanyi.fr/ambroisie/abacus";
license = licenses.mit;

View file

@ -5,7 +5,7 @@ bignum_sources = files(
bignum_inc = include_directories('.')
bignum_lib = static_library(
bignum_lib = library(
'bignum',
sources: bignum_sources,
)

View file

@ -12,5 +12,4 @@ abacus = executable(
bignum,
parse,
],
install: true,
)

View file

@ -31,7 +31,7 @@ parser_sources = custom_target(
parse_inc = include_directories('.')
parse_lib = static_library(
parse_lib = library(
'parser',
'parser-driver.cc',
'parser-driver.hh',