mobilizon/flake.nix

28 lines
603 B
Nix
Raw Normal View History

2023-03-15 21:57:31 +01:00
{
description = "A very basic flake";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
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
mix2nix
2023-03-15 21:57:31 +01:00
cmake
imagemagick
(yarn.override {
nodejs = pkgs.nodejs-16_x;
})
2023-03-15 21:57:31 +01:00
];
};
};
}