File tree 2 files changed +5
-8
lines changed
2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 18
18
with :
19
19
nix_path : nixpkgs=channel:${{ matrix.nixpkgs_channel }}
20
20
# - run: nix build
21
- - run : nix-build -E '(import ./.).defaultPackage .${builtins.currentSystem}'
21
+ - run : nix-build -E '(import ./.).packages .${builtins.currentSystem}'
22
22
# - run: nix flake check
23
23
- run : nix-build -E '(import ./.).checks.${builtins.currentSystem}'
Original file line number Diff line number Diff line change 8
8
forAllSystems = f : nixpkgs . lib . genAttrs systems ( system : f system ) ;
9
9
in {
10
10
packages = forAllSystems ( system : with ( import nixpkgs { inherit system ; } ) ; {
11
- nix-mode = let
11
+ default = let
12
12
emacs = emacsWithPackages ( epkgs : with epkgs ; [
13
- org-plus- contrib
13
+ org-contrib
14
14
company
15
15
mmm-mode
16
- f
17
16
magit-section
18
17
transient
19
18
] ) ;
20
- in stdenvNoCC . mkDerivation {
19
+ in stdenv . mkDerivation {
21
20
pname = "nix-mode" ;
22
21
version = "1.5.0" ;
23
22
src = self ;
31
30
} ;
32
31
} ) ;
33
32
34
- defaultPackage = forAllSystems ( system : self . packages . ${ system } . nix-mode ) ;
35
-
36
33
# checks are run in ‘make check’ right now we should probably move
37
34
# these to its own derivation
38
35
checks = forAllSystems ( system : {
39
- inherit ( self . packages . ${ system } ) nix-mode ;
36
+ inherit ( self . packages . ${ system } ) default ;
40
37
} ) ;
41
38
} ;
42
39
}
You can’t perform that action at this time.
0 commit comments