1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 15:11:35 +00:00

Merge pull request #81847 from zowoq/crun

crun: 0.12.2.1 -> 0.13
This commit is contained in:
Mario Rodas 2020-03-06 04:15:22 -05:00 committed by GitHub
commit 462ecfb72a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,13 +33,13 @@ let
in
stdenv.mkDerivation rec {
pname = "crun";
version = "0.12.2.1";
version = "0.13";
src = fetchFromGitHub {
owner = "containers";
repo = pname;
rev = version;
sha256 = "16hjkkr1fp542ycyp87pj626mzfrza5mcb82hhkp4a8m8bqmpzp4";
sha256 = "0c5acf916yv2zv3xjvxk1sa4h3n2wljc5hw61php7q37pbjc1ppn";
fetchSubmodules = true;
};
@ -64,7 +64,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "A fast and lightweight fully featured OCI runtime and C library for running containers";
license = licenses.gpl3;
license = licenses.gpl2Plus;
platforms = platforms.linux;
inherit (src.meta) homepage;
};