11 lines
345 B
Nix
11 lines
345 B
Nix
{ core, ... }:
|
|
Library "libaccounting"
|
|
{ inherit core; }
|
|
{
|
|
common = ./common;
|
|
double = ./double;
|
|
parse = ./parse;
|
|
schemes = ./schemes;
|
|
single = ./single;
|
|
}
|