15 lines
437 B
Nix
15 lines
437 B
Nix
|
{ asterisk, fetchFromGitHub, fetchpatch, ... }:
|
||
|
|
||
|
asterisk.overrideAttrs (old: {
|
||
|
#src = /home/lukegb/Projects/asterisk;
|
||
|
#patches = [ /home/lukegb/Projects/asterisk.patch ];
|
||
|
patches = [
|
||
|
#(fetchpatch {
|
||
|
# url = "https://p.lukegb.com/raw/MultiplyMagicalKoi.patch";
|
||
|
# sha256 = "056iy9415xyp9g69xs8ckyvccs8sskc7zp7frnwrvl7wlxnsf2va";
|
||
|
#})
|
||
|
/home/lukegb/Projects/asterisk.patch
|
||
|
];
|
||
|
enableParallelBuilding = true;
|
||
|
})
|