mobilizon/flake.nix

27 lines
613 B
Nix
Raw Permalink Normal View History

2023-03-15 21:57:31 +01:00
{
description = "A very basic flake";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/da141d2fef4636aca767188e7a9f6e89e65264ce";
2023-03-15 21:57:31 +01:00
outputs = { self, nixpkgs }: {
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
packages.x86_64-linux.default = self.packages.x86_64-linux.hello;
devShells.x86_64-linux.default = let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in pkgs.mkShell {
buildInputs = with pkgs; [
elixir
cmake
imagemagick
(yarn.override {
nodejs = pkgs.nodejs-16_x;
})
2023-03-15 21:57:31 +01:00
];
};
};
}