mirror of
https://github.com/commercialhaskell/stackage-server.git
synced 2026-01-11 19:58:28 +01:00
15 lines
342 B
Nix
15 lines
342 B
Nix
{
|
|
description = "stackage-server";
|
|
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem
|
|
(system:
|
|
let pkgs = nixpkgs.legacyPackages.${system}; in
|
|
{
|
|
defaultPackage = pkgs.callPackage ./package.nix {};
|
|
}
|
|
);
|
|
}
|