-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
22 lines (22 loc) · 882 Bytes
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ pkgs ? import <nixpkgs> {} }:
pkgs.haskellPackages.mkDerivation {
pname = "aftovolio";
version = "0.7.1.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = with pkgs.haskellPackages; [
async base cli-arguments containers deepseq directory
intermediate-structures lists-flines minmax mmsyn2-array
monoid-insertleft quantizer rev-scientific rhythmic-sequences
uniqueness-periods-vector-stats
];
executableHaskellDepends = with pkgs.haskellPackages; [
async base cli-arguments containers deepseq directory
intermediate-structures lists-flines minmax mmsyn2-array
monoid-insertleft quantizer rev-scientific rhythmic-sequences
uniqueness-periods-vector-stats
];
description = "An AFTOVolio implementation for creating texts with special phonetic / prosodic properties";
license = pkgs.lib.licenses.mit;
}