tangled
alpha
login
or
join now
nel.pet
/
pds-migrate
6
fork
atom
CLI tool for migrating PDS
6
fork
atom
overview
issues
pulls
pipelines
feat: we have dev shell at home
nel.pet
7 months ago
bedc41f8
fd66d014
verified
This commit was signed with the committer's
known signature
.
nel.pet
SSH Key Fingerprint:
SHA256:Zd+mWw4EweOfjYKNMYyVtMSN7oj+SBabmubG4RThVEI=
0/1
build.yml
failed
2m 47s
+6
-3
1 changed file
expand all
collapse all
unified
split
flake.nix
+6
-3
flake.nix
reviewed
···
5
5
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
6
6
};
7
7
8
8
-
outputs = {nixpkgs, ...}: let
8
8
+
outputs = { self, nixpkgs, ...}: let
9
9
forAllSystems = function:
10
10
nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed (
11
11
-
system: function nixpkgs.legacyPackages.${system}
11
11
+
system: (function system nixpkgs.legacyPackages.${system})
12
12
);
13
13
in {
14
14
-
packages = forAllSystems (pkgs: {
14
14
+
packages = forAllSystems (system: pkgs: {
15
15
default = pkgs.callPackage ./nix/package.nix {};
16
16
+
});
17
17
+
devShells = forAllSystems (system: pkgs: {
18
18
+
default = self.packages.${system}.default;
16
19
});
17
20
};
18
21
}