DEVELOPMENT ENVIRONMENT

~liljamo/makeimg.nix

ref: 09bef314c038d4b4fe28076f0ee9210bd4575e55 makeimg.nix/flake.nix -rw-r--r-- 390 bytes
09bef314Jonni Liljamo feat: add patch to bins 8 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
    flake-parts.url = "github:hercules-ci/flake-parts";
  };

  outputs = inputs @ {...}:
    inputs.flake-parts.lib.mkFlake {inherit inputs;} {
      systems = ["x86_64-linux"];
      perSystem = {
        pkgs,
        ...
      }: {
        packages.default = pkgs.callPackage ./default.nix {};
      };
    };
}