Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
bandage # Bandage
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
bandage # Bandage
];
} Package Definition
{
"pname": "bandage",
"version": "0.9.0",
"src": {
"url": "https://github.com/rrwick/Bandage/releases/download/v0.9.0/Bandage_macOS-aarch64_v0.9.0.zip",
"sha256": "0bf30966957a5949bf40595ae05d56bb84e504ee8d25e346ccad631c4588e815"
},
"installPhase": [
"mkdir -p \"$out/Applications/Bandage.app\" && cp -r \"Bandage.app\" \"$out/Applications\"",
"mkdir -p \"$out/bin\" && ln -s \"$out/bandage.wrapper.sh\" \"$out/bin/bandage\""
],
"meta": {
"description": "Bioinformatics app for navigating de novo assembly graphs",
"homepage": "https://rrwick.github.io/Bandage/"
}
}