lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

tipidee: mark broken on Darwin

+5 -3
+3 -2
pkgs/development/skaware-packages/build-skaware-package.nix
··· 26 26 , maintainers ? [ ] 27 27 # : passthru arguments (e.g. tests) 28 28 , passthru ? { } 29 - 29 + # : attributes to be merged into meta 30 + , broken ? false 30 31 }: 31 32 32 33 let ··· 125 126 126 127 meta = { 127 128 homepage = "https://skarnet.org/software/${pname}/"; 128 - inherit description platforms; 129 + inherit broken description platforms; 129 130 license = lib.licenses.isc; 130 131 maintainers = with lib.maintainers; 131 132 [ pmahoney Profpatsch qyliss ] ++ maintainers;
+2 -1
pkgs/development/skaware-packages/tipidee/default.nix
··· 1 - { skawarePackages, skalibs }: 1 + { skawarePackages, stdenv, skalibs }: 2 2 3 3 skawarePackages.buildPackage { 4 4 pname = "tipidee"; ··· 35 35 mv examples $doc/share/doc/tipidee/examples 36 36 ''; 37 37 38 + broken = stdenv.isDarwin; 38 39 }