Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
fastdmg # FastDMG
];
}
Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
fastdmg # FastDMG
];
}
Package Definition
{
"pname": "fastdmg",
"version": "1.0.2",
"src": {
"url": "https://sveinbjorn.org/files/software/fastdmg/FastDMG-1.0.2.zip",
"sha256": "405c99ee251ebe1a5f3e4cbec8b84e6211ee8b89e5abf0f50b7b2cee9567062a"
},
"installPhase": [
"mkdir -p \"$out/Applications/FastDMG.app\" && cp -r \"FastDMG.app\" \"$out/Applications\""
],
"meta": {
"description": "Alternative to Apple's DiskImageMounter app",
"homepage": "https://sveinbjorn.org/fastdmg"
}
}