add ips package

This commit is contained in:
rhiannon morris 2025-04-04 23:49:39 +02:00
parent 1ccbf13a31
commit 3c03898977
2 changed files with 29 additions and 1 deletions

View file

@ -22,6 +22,8 @@
"pragmatapro" "teranoptia"
];
haskellPackages = packagesInDir "haskell" [ "ips" ];
makeApp = pkgs: name: exe: {
inherit name;
@ -43,7 +45,8 @@
mkPackages = sys: pkgs:
ifLinux64 sys (linuxPackages pkgs) //
crossPlatformPackages pkgs // fonts pkgs;
crossPlatformPackages pkgs // fonts pkgs //
haskellPackages pkgs.haskellPackages;
mkApps = sys: pkgs: ifLinux64 sys (linuxApps pkgs);
in {