Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
horizon-platform
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
package-sets
horizon-platform
Commits
21e44230
There was an error fetching the commit references. Please try again later.
Commit
21e44230
authored
2 years ago
by
Daniel Firth
Browse files
Options
Downloads
Patches
Plain Diff
Remove horizon-gen-nix from inputs
parent
587bd41d
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+1
-1
1 addition, 1 deletion
README.md
flake.lock
+93
-0
93 additions, 0 deletions
flake.lock
flake.nix
+1
-8
1 addition, 8 deletions
flake.nix
with
95 additions
and
9 deletions
README.md
+
1
−
1
View file @
21e44230
...
...
@@ -9,7 +9,7 @@ Horizon is a haskell package set targetting new builds of GHC.
The package set is generated from the
`manifest.dhall`
using the following command:
```
nix run
.#
horizon-gen-nix
nix run
git+https://gitlab.homotopic.tech/horizon/
horizon-gen-nix
```
This will generate both the
`pkgs`
folder and the
`overlay.nix`
. If you want to
...
...
This diff is collapsed.
Click to expand it.
flake.lock
0 → 100644
+
93
−
0
View file @
21e44230
{
"nodes": {
"flake-utils": {
"locked": {
"lastModified": 1659877975,
"narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "c0e246b9b83f637f4681389ecabcb2681b4f3af0",
"type": "github"
},
"original": {
"id": "flake-utils",
"type": "indirect"
}
},
"flake-utils_2": {
"locked": {
"lastModified": 1644229661,
"narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"lint-utils": {
"inputs": {
"flake-utils": "flake-utils_2",
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1655192403,
"narHash": "sha256-XyKDvRGDh8VXA6zN8DUTnDaTMrk0MxMKg70MaAX1A2Y=",
"ref": "refs/heads/master",
"rev": "a7ae54afdc4c05a5aabf202d5a76d02705eb6147",
"revCount": 28,
"type": "git",
"url": "https://gitlab.homotopic.tech/nix/lint-utils"
},
"original": {
"type": "git",
"url": "https://gitlab.homotopic.tech/nix/lint-utils"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1644525281,
"narHash": "sha256-D3VuWLdnLmAXIkooWAtbTGSQI9Fc1lkvAr94wTxhnTU=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "48d63e924a2666baf37f4f14a18f19347fbd54a2",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1665830552,
"narHash": "sha256-qel2bZ9TqfW8WzWCWdjuCy4bVFhhGsEeqFv/bj1ka2s=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "26b7e6ab6a864c3e7e077bcb27a49f0480b9894a",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"lint-utils": "lint-utils",
"nixpkgs": "nixpkgs_2"
}
}
},
"root": "root",
"version": 7
}
This diff is collapsed.
Click to expand it.
flake.nix
+
1
−
8
View file @
21e44230
...
...
@@ -2,9 +2,8 @@
inputs
=
{
lint-utils
.
url
=
"git+https://gitlab.homotopic.tech/nix/lint-utils"
;
nixpkgs
.
url
=
"github:nixos/nixpkgs/nixpkgs-unstable"
;
horizon-gen-nix
.
url
=
"git+https://gitlab.homotopic.tech/horizon/horizon-gen-nix"
;
};
outputs
=
inputs
@
{
self
,
nixpkgs
,
flake-utils
,
horizon-gen-nix
,
lint-utils
,
...
}:
outputs
=
inputs
@
{
self
,
nixpkgs
,
flake-utils
,
lint-utils
,
...
}:
flake-utils
.
lib
.
eachSystem
[
"x86_64-linux"
]
(
system
:
let
pkgs
=
import
nixpkgs
{
inherit
system
;
};
...
...
@@ -22,12 +21,6 @@
hp
;
in
{
apps
=
{
horizon-gen-nix
=
{
type
=
"app"
;
program
=
"
${
horizon-gen-nix
.
outputs
.
packages
.
x86_64-linux
.
default
}
/bin/horizon-gen-nix"
;
};
};
checks
=
{
dhall-format
=
lint-utils
.
outputs
.
linters
.
x86_64-linux
.
dhall-format
./.
;
nixpkgs-fmt
=
lint-utils
.
outputs
.
linters
.
x86_64-linux
.
nixpkgs-fmt
./.
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment