mobilizon/flake.nix

30 lines
635 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 {
2023-05-24 17:02:56 +02:00
nodejs = nodejs-16_x;
})
2023-05-16 20:45:49 +02:00
yarn2nix
2023-05-24 17:02:56 +02:00
nodejs-16_x
2023-03-15 21:57:31 +01:00
];
};
};
}