Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
simplesynth # SimpleSynth
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
simplesynth # SimpleSynth
];
} Package Definition
{
"pname": "simplesynth",
"version": "1.1",
"src": {
"url": "https://notahat.s3.amazonaws.com/SimpleSynth-1.1.zip",
"sha256": "5d70295d5a72075a26b158f5a92b1488170e8ff569f0a52c4e5e5bcfe7ffcdb2"
},
"installPhase": [
"mkdir -p \"$out/Applications/SimpleSynth.app\" && cp -r \"SimpleSynth.app\" \"$out/Applications\""
],
"meta": {
"description": "Small and fast synth",
"homepage": "https://github.com/notahat/simplesynth"
}
}