mobilizon/flake.nix

29 lines
576 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/nixos-unstable";
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
2023-03-29 19:00:31 +02:00
rebar3
2023-03-15 21:57:31 +01:00
cmake
imagemagick
2023-03-30 16:53:55 +02:00
mix2nix
2023-04-09 17:43:16 +02:00
yarn2nix
2023-05-08 23:12:43 +02:00
yarn
2023-03-15 21:57:31 +01:00
];
};
};
}