summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--flake.lock7
-rw-r--r--flake.nix12
2 files changed, 6 insertions, 13 deletions
diff --git a/flake.lock b/flake.lock
index 336e3eb..fa5649c 100644
--- a/flake.lock
+++ b/flake.lock
@@ -1,13 +1,10 @@
{
"inputs": {
"nixpkgs": {
- "id": "nixpkgs",
"inputs": {},
- "narHash": "sha256-5/HXWs25BLukwG9VaxmdmUf/9o79e32aW/tmhcWEbKk=",
- "nonFlakeInputs": {},
- "uri": "github:edolstra/nixpkgs/62ac6f7f504c8d3998558d9b269d22d26f13f1f0"
+ "narHash": "sha256-TrLhI3xPkTTznE9gcMHhkHirGNN7N02zM4DxJ/U3WRs=",
+ "uri": "github:edolstra/nixpkgs/24bf27fc215e8300877dfa1c426b9966bbfbd150"
}
},
- "nonFlakeInputs": {},
"version": 2
}
diff --git a/flake.nix b/flake.nix
index f8b2104..8d570bf 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,17 +1,13 @@
{
- name = "patchelf";
-
- edition = 201906;
+ edition = 201909;
description = "A tool for modifying ELF executables and libraries";
- inputs = [ "nixpkgs" ];
-
- outputs = inputs: rec {
+ outputs = { self, nixpkgs }: rec {
hydraJobs = import ./release.nix {
- patchelfSrc = inputs.self;
- nixpkgs = inputs.nixpkgs;
+ patchelfSrc = self;
+ nixpkgs = nixpkgs;
};
checks.build = hydraJobs.build.x86_64-linux;