Deployment and lifecycle management for Nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

dev: drop expert for now

+1 -88
+1 -83
flake.lock
··· 1 1 { 2 2 "nodes": { 3 - "beam-flakes": { 4 - "inputs": { 5 - "flake-parts": [ 6 - "expert", 7 - "flake-parts" 8 - ], 9 - "nixpkgs": [ 10 - "expert", 11 - "nixpkgs" 12 - ] 13 - }, 14 - "locked": { 15 - "lastModified": 1771594669, 16 - "narHash": "sha256-bjqfo3IobpY0se/LOL6U7J0AodvMTZjZad1x3XLc7HY=", 17 - "owner": "elixir-tools", 18 - "repo": "nix-beam-flakes", 19 - "rev": "da950d6652b5b4bc43ee7c440a39097b4d96e448", 20 - "type": "github" 21 - }, 22 - "original": { 23 - "owner": "elixir-tools", 24 - "repo": "nix-beam-flakes", 25 - "type": "github" 26 - } 27 - }, 28 - "expert": { 29 - "inputs": { 30 - "beam-flakes": "beam-flakes", 31 - "flake-parts": "flake-parts", 32 - "nixpkgs": [ 33 - "nixpkgs" 34 - ] 35 - }, 36 - "locked": { 37 - "lastModified": 1771779220, 38 - "narHash": "sha256-NlT9FaTNPYLU/QW/RwGyaRoiC9g+CE5FtL4+JmfXwrw=", 39 - "owner": "elixir-lang", 40 - "repo": "expert", 41 - "rev": "d06798361a4b1572ca7cdd7f757005b555fbb8d9", 42 - "type": "github" 43 - }, 44 - "original": { 45 - "owner": "elixir-lang", 46 - "ref": "v0.1.0-rc.1", 47 - "repo": "expert", 48 - "type": "github" 49 - } 50 - }, 51 3 "flake-parts": { 52 4 "inputs": { 53 5 "nixpkgs-lib": "nixpkgs-lib" 54 - }, 55 - "locked": { 56 - "lastModified": 1769996383, 57 - "narHash": "sha256-AnYjnFWgS49RlqX7LrC4uA+sCCDBj0Ry/WOJ5XWAsa0=", 58 - "owner": "hercules-ci", 59 - "repo": "flake-parts", 60 - "rev": "57928607ea566b5db3ad13af0e57e921e6b12381", 61 - "type": "github" 62 - }, 63 - "original": { 64 - "owner": "hercules-ci", 65 - "repo": "flake-parts", 66 - "type": "github" 67 - } 68 - }, 69 - "flake-parts_2": { 70 - "inputs": { 71 - "nixpkgs-lib": "nixpkgs-lib_2" 72 6 }, 73 7 "locked": { 74 8 "lastModified": 1769996383, ··· 115 49 "type": "github" 116 50 } 117 51 }, 118 - "nixpkgs-lib_2": { 119 - "locked": { 120 - "lastModified": 1769909678, 121 - "narHash": "sha256-cBEymOf4/o3FD5AZnzC3J9hLbiZ+QDT/KDuyHXVJOpM=", 122 - "owner": "nix-community", 123 - "repo": "nixpkgs.lib", 124 - "rev": "72716169fe93074c333e8d0173151350670b824c", 125 - "type": "github" 126 - }, 127 - "original": { 128 - "owner": "nix-community", 129 - "repo": "nixpkgs.lib", 130 - "type": "github" 131 - } 132 - }, 133 52 "root": { 134 53 "inputs": { 135 - "expert": "expert", 136 - "flake-parts": "flake-parts_2", 54 + "flake-parts": "flake-parts", 137 55 "nixpkgs": "nixpkgs" 138 56 } 139 57 }
-5
flake.nix
··· 2 2 inputs = { 3 3 nixpkgs.url = "github:nixos/nixpkgs?ref=nixpkgs-unstable"; 4 4 flake-parts.url = "github:hercules-ci/flake-parts"; 5 - 6 - expert.url = "github:elixir-lang/expert?ref=v0.1.0-rc.1"; 7 - expert.inputs.nixpkgs.follows = "nixpkgs"; 8 5 }; 9 6 10 7 outputs = ··· 25 22 26 23 perSystem = 27 24 { 28 - inputs', 29 25 lib, 30 26 pkgs, 31 27 self', ··· 62 58 beamPackages.erlang 63 59 beamPackages.elixir 64 60 beamPackages.hex 65 - inputs'.expert.packages.expert 66 61 67 62 # elixir deps build deps 68 63 pkgs.cargo