Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/patchelf
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1c95784c028d
Choose a base ref
...
head repository: NixOS/patchelf
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1d4737767085
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on May 31, 2019

  1. Update flake.nix

    edolstra committed May 31, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    edolstra Eelco Dolstra
    Copy the full SHA
    1d47377 View commit details
Showing with 10 additions and 8 deletions.
  1. +4 −4 flake.lock
  2. +6 −4 flake.nix
8 changes: 4 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -5,15 +5,17 @@

description = "A tool for modifying ELF executables and libraries";

requires = [ "nixpkgs" ];
inputs = [ "nixpkgs" ];

provides = deps: rec {
outputs = inputs: rec {

hydraJobs = import ./release.nix {
patchelfSrc = deps.self;
nixpkgs = deps.nixpkgs;
patchelfSrc = inputs.self;
nixpkgs = inputs.nixpkgs;
};

checks.build = hydraJobs.build.x86_64-linux;

packages.patchelf = hydraJobs.build.x86_64-linux;

defaultPackage = packages.patchelf;