tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
harePackages: refactor
Anderson Torres
3 years ago
fb7ddb66
78070740
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
hare
default.nix
+3
-3
pkgs/development/compilers/hare/default.nix
reviewed
···
1
1
{ config, lib, pkgs }:
2
2
3
3
-
lib.makeScope pkgs.newScope (self: with self; {
3
3
+
lib.makeScope pkgs.newScope (self: {
4
4
5
5
-
harec = callPackage ./harec { };
6
6
-
hare = callPackage ./hare { };
5
5
+
harec = pkgs.callPackage ./harec { };
6
6
+
hare = pkgs.callPackage ./hare { };
7
7
})