blahaj: enable mt by default and add static (#270608)
This commit is contained in:
parent
b34af2d675
commit
5cb92fd712
1 changed files with 6 additions and 0 deletions
|
@ -1,6 +1,10 @@
|
||||||
{ lib
|
{ lib
|
||||||
|
, stdenv
|
||||||
, crystal
|
, crystal
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
# https://crystal-lang.org/2019/09/06/parallelism-in-crystal/
|
||||||
|
, multithreading ? true
|
||||||
|
, static ? stdenv.hostPlatform.isStatic
|
||||||
}:
|
}:
|
||||||
|
|
||||||
crystal.buildCrystalPackage rec {
|
crystal.buildCrystalPackage rec {
|
||||||
|
@ -14,6 +18,8 @@ crystal.buildCrystalPackage rec {
|
||||||
hash = "sha256-CmMF9jDKUo+c8dYc2UEHKdBDE4dgwExcRS5sSUsUJik=";
|
hash = "sha256-CmMF9jDKUo+c8dYc2UEHKdBDE4dgwExcRS5sSUsUJik=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildTargets = [ "${if static then "static" else "build"}${if multithreading then "_mt" else ""}" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Gay sharks at your local terminal - lolcat-like CLI tool";
|
description = "Gay sharks at your local terminal - lolcat-like CLI tool";
|
||||||
homepage = "https://blahaj.queer.software";
|
homepage = "https://blahaj.queer.software";
|
||||||
|
|
Loading…
Reference in a new issue