buildah: 0.12 -> 1.1

authored by

Antoine Eiche and committed by
Profpatsch
8e986302 22045985

+7 -4
+7 -4
pkgs/development/tools/buildah/default.nix
··· 1 1 { stdenv, lib, buildGoPackage, fetchFromGitHub, runCommand 2 - , gpgme, libgpgerror, devicemapper, btrfs-progs, pkgconfig, ostree, libselinux 2 + , gpgme, libgpgerror, devicemapper, btrfs-progs, pkgconfig, ostree, libselinux, libseccomp 3 3 , go-md2man }: 4 4 5 5 let 6 - version = "0.12"; 6 + version = "1.1"; 7 7 8 8 src = fetchFromGitHub { 9 9 rev = "v${version}"; 10 10 owner = "projectatomic"; 11 11 repo = "buildah"; 12 - sha256 = "0xyq7rv0lj6bxwh2rnf44w9gjcqbdkfcdff88023b9vlsc8h4k0m"; 12 + sha256 = "0pc7bzcaafrz56glygzhnbilgaz4ca2kmklw8njfgamffbw4d54p"; 13 13 }; 14 14 goPackagePath = "github.com/projectatomic/buildah"; 15 15 ··· 22 22 inherit goPackagePath; 23 23 excludedPackages = [ "tests" ]; 24 24 25 + # Optimizations break compilation of libseccomp c bindings 26 + hardeningDisable = [ "fortify" ]; 27 + 25 28 nativeBuildInputs = [ pkgconfig go-md2man.bin ]; 26 - buildInputs = [ gpgme libgpgerror devicemapper btrfs-progs ostree libselinux ]; 29 + buildInputs = [ gpgme libgpgerror devicemapper btrfs-progs ostree libselinux libseccomp ]; 27 30 28 31 # Copied from the skopeo package, doesn’t seem to make a difference? 29 32 # If something related to these libs failed, uncomment these lines.