File: flake.nix

package info (click to toggle)
rust-imap-client 0.2.3-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 468 kB
  • sloc: makefile: 2; sh: 1
file content (23 lines) | stat: -rw-r--r-- 621 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  description = "Rust library to manage IMAP clients";

  inputs = {
    # TODO: https://github.com/NixOS/nixpkgs/pull/358989
    # nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
    nixpkgs.url = "github:soywod/nixpkgs";
    fenix = {
      # TODO: https://github.com/nix-community/fenix/pull/145
      # url = "github:nix-community/fenix";
      url = "github:soywod/fenix";
      inputs.nixpkgs.follows = "nixpkgs";
    };
    pimalaya = {
      url = "github:pimalaya/nix";
      flake = false;
    };
  };

  outputs = inputs: (import inputs.pimalaya).mkFlakeOutputs inputs {
    shell = ./shell.nix;
  };
}