summaryrefslogtreecommitdiffstats
path: root/flake.nix
blob: ec5ad19bf34fe1739078a9fd6500a7038a4a3aa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  name = "patchelf";

  epoch = 2019;

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

  inputs = [ "nixpkgs" ];

  outputs = inputs: rec {

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

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

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

    defaultPackage = packages.patchelf;

  };
}