summaryrefslogtreecommitdiffstats
path: root/flake.nix
blob: 8d570bfe1f41e34ad415858e1c3d86925e8ceadf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  edition = 201909;

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

  outputs = { self, nixpkgs }: rec {

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

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

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

    defaultPackage = packages.patchelf;

  };
}