An open source DAW for GNU/Linux, inspired by modular synths. http://noisicaa.odahoda.de/
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Ben Niemann ef5527be03 Move flatpy to a separate repo and include it as a submodule. 1 year ago
3rdparty Move flatpy to a separate repo and include it as a submodule. 1 year ago
appimg Move flatpy to a separate repo and include it as a submodule. 1 year ago
bin meld messed with my python. don't! 1 year ago
build_utils Fix port overrides for faust output ports. 1 year ago
data Fix duplicate rule for noisicaa.svg icon. 1 year ago
etc Remove unused dependency on protobuf. 1 year ago
noisicaa Hide the --shell flag. 1 year ago
typeshed Make everything lint free. 1 year ago
website Add plausible stats snippet to website. 1 year ago
.dir-locals.el Tweak projectile-project-run-cmd 2 years ago
.gitignore Move flatpy to a separate repo and include it as a submodule. 1 year ago
.gitmodules Move flatpy to a separate repo and include it as a submodule. 1 year ago
.projectile Move flatpy to a separate repo and include it as a submodule. 1 year ago
COPYING Initial commit to git (from latest version in svn). 8 years ago
README.md Update README for the new nix world. 2 years ago
VERSION Move version string to a central file. 2 years ago
default.nix Pin down the current nixpkgs version. 2 years ago
noisicaa.nix Move flatpy to a separate repo and include it as a submodule. 1 year ago
shell.nix meld messed with my python. don't! 1 year ago
waf Something that build with waf and nix. 2 years ago
wscript Move dep_sort from nix to a submodule. 1 year ago

README.md

noisicaä

Important note: This is project is in pre-APLHA state, do not expect it to be usable in any form or shape.

  • It has bugs.
  • It does not do a lot of useful things.
  • There is no documentation.
  • And most importantly: the save format is not finalized and will change in incompatible ways, i.e. you will not be able to open your work from older versions.

Follow the development at http://noisicaa.odahoda.de/

What's This?

The open source DAW that does not DAW.

License: GPL2 (see file COPYING).

This project is currenly only designed to run on Linux desktops.

Eventually it should have the general features you would expect from a DAW, like recording and editing audio or MIDI, using plugins, etc. I specifically want to have tracks that can be edited using musical notation (i.e. notes on staff lines instead of the more common MIDI grid).

But all that is still in the far out future.

The focus will be on electronic music production and sound design (using the broadest possible definition of music).

noisicaä should not be a tool to record, edit and mix audio tracks from people playing actual instruments - it does not try to compete with Ardour.

Getting Started

There are currently no prebuilt binary packages, which you could just install, so you have to build from source. It is assumed that you're moderately experienced with software development on Linux.

1. Prerequisites

You need git, which is probably already installed on your system.

Building noisicaä itself does not need a lot of disk space, but Nix (see below) will download and install a lot of packages, which are going to be stored on your root filesystem. So make sure that you have a few gigabytes of free space there. But the upside is that you do not need to manually install any other packages.

2. Set up Nix

The development setup is currently built around the Nix package manager. If you already use Nix, then you can skip this section.

What is Nix?
Nix is a functional package manager, a configuration language to describe package and a Linux distribution.
For our purposes you only need to think of it as a package manager like apt, pip, etc. The great thing about it is that you can install and use it on any Linux system and it will not interfere with your normal package manager. We're going to use it to install all the tools and dependencies needed to build noisicaä without messing up your system.
If you want to contribute to the code, you might need to deal with the Nix configuration language.
But you do not need to install Nix as your Linux OS (neither do I).

The most basic Nix installation is done with a single command (the Nix documentation describes more options, but we don't need those):

sh <(curl -L https://nixos.org/nix/install)

3. Get the source code

Go to some directory where you want to store the source code and clone the git repository:

git clone https://git.odahoda.de/pink/noisicaa.git

That should create a directory noisicaa, so now go there:

cd noisicaa

4. Install the dependencies

Now we're going to start a "Nix shell".

Nix will download all the packages needed to build noisicaa into its "Nix store" and start a subshell with environment variables ($PATH and so on) setup such that those packages are accessible. When you exit that subshell, there will be no trace left of what has been installed, except from the disk usage of the Nix store.

The downloads will take a while and some packages need to be built from source, so grab a cup of tea, while you watch it:

nix-shell

5. Configure and build

Once inside the Nix shell and all dependencies available, the actual build process is pretty simple and standard (using waf as the build system):

./waf configure
./waf build

The output of that process is stored in a build directory.

6. Launch noisicaä

It is not yet possible to properly install noisicaä on your system (i.e. the configuration to make ./waf install work has yet to be written), so use a wrapper script to launch it from the build directory:

bin/noisicaa-dev