34 lines
622 B
Nix
34 lines
622 B
Nix
{
|
|
description = "dependencies for parallel processing in c";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs =
|
|
{ self, nixpkgs, ... }:
|
|
let
|
|
system = "x86_64-linux";
|
|
pkgs = import nixpkgs { inherit system; };
|
|
in
|
|
{
|
|
devShells.${system}.default = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
gcc
|
|
gnumake
|
|
feh
|
|
feh
|
|
imagemagick_light
|
|
typst
|
|
typstyle
|
|
zip
|
|
unzip
|
|
feh
|
|
];
|
|
shellHook = ''
|
|
echo welcome!
|
|
'';
|
|
};
|
|
};
|
|
}
|