Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
igv-desktop # Integrative Genomics Viewer (IGV)
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
igv-desktop # Integrative Genomics Viewer (IGV)
];
} Package Definition
{
"pname": "igv-desktop",
"version": "2.19.7",
"src": {
"url": "https://data.broadinstitute.org/igv/projects/downloads/2.19/IGV_MacApp_2.19.7.zip",
"sha256": "4e03824984c846e681fe7eb5a18b77a5ca51a839788f65981365e543c267c1fa"
},
"installPhase": [
"mkdir -p \"$out/Applications/IGV_2.19.7.app\" && cp -r \"IGV_2.19.7.app\" \"$out/Applications\""
],
"meta": {
"description": "Visual exploration of genomic data",
"homepage": "https://igv.org/doc/desktop/"
}
}