Skip to content

Commit

Permalink
Merge pull request NixOS#84861 from zowoq/skopeo
Browse files Browse the repository at this point in the history
skopeo: 1.41.0 -> 0.2.0
  • Loading branch information
marsam authored Apr 10, 2020
2 parents eaacfdc + c5bd085 commit 4bf632f
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions pkgs/development/tools/skopeo/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,27 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub, runCommand
, gpgme, libgpgerror, lvm2, btrfs-progs, pkgconfig, libselinux
, go-md2man }:
{ stdenv
, lib
, buildGoPackage
, fetchFromGitHub
, runCommand
, gpgme
, libgpgerror
, lvm2
, btrfs-progs
, pkg-config
, libselinux
, go-md2man
}:

with stdenv.lib;

let
version = "0.1.41";
version = "0.2.0";

src = fetchFromGitHub {
rev = "v${version}";
owner = "containers";
repo = "skopeo";
sha256 = "0aqw17irj2wn4a8g9hzfm5z5azqq33z6r1dbg1gyn2c8qxy1vfxs";
sha256 = "09zqzrw6f1s6kaknnj3hra3xz4nq6y86vmw5vk8p4f6g7cwakg1x";
};

defaultPolicyFile = runCommand "skopeo-default-policy.json" {} "cp ${src}/default-policy.json $out";
Expand All @@ -28,7 +38,7 @@ buildGoPackage {

excludedPackages = "integration";

nativeBuildInputs = [ pkgconfig (lib.getBin go-md2man) ];
nativeBuildInputs = [ pkg-config (lib.getBin go-md2man) ];
buildInputs = [ gpgme ] ++ lib.optionals stdenv.isLinux [ libgpgerror lvm2 btrfs-progs libselinux ];

buildFlagsArray = ''
Expand Down

0 comments on commit 4bf632f

Please sign in to comment.