util-linux: 2.27.1 -> 2.28

This commit is contained in:
Aneesh Agrawal
2016-04-27 23:26:46 -04:00
parent b465dc202f
commit 279a01d0dc
2 changed files with 20 additions and 18 deletions
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, pkgconfig, zlib, ncurses ? null, perl ? null, pam, systemd }:
stdenv.mkDerivation rec {
name = "util-linux-2.27.1";
name = "util-linux-${version}";
version = "2.28";
src = fetchurl {
url = "mirror://kernel/linux/utils/util-linux/v2.27/${name}.tar.xz";
sha256 = "1452hz5zx56a3mad8yrg5wb0vy5zi19mpjp6zx1yr6p9xp6qz08a";
url = "mirror://kernel/linux/utils/util-linux/v${version}/${name}.tar.xz";
sha512 = "251zv6lk6b8ip38w2h0w2rpnly38nzh96945mbpssvwjv8fgr5bnhj3207aingyybik79761zngk981wl0rblq5f7l5v655znyi3yd1";
};
patches = [
@@ -63,7 +64,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://www.kernel.org/pub/linux/utils/util-linux/;
homepage = https://www.kernel.org/pub/linux/utils/util-linux/;
description = "A set of system utilities for Linux";
license = licenses.gpl2; # also contains parts under more permissive licenses
platforms = platforms.linux;