debianutils: 4.8.1 -> 4.8.2

This commit is contained in:
WilliButz 2017-08-24 20:15:03 +02:00
parent bbf7d8c77b
commit 1c0e7d631d
No known key found for this signature in database
GPG Key ID: 92582A10F1179CB2

View File

@ -1,16 +1,12 @@
{ stdenv, fetchurl }:
let
checksums = {
"4.8.1" = "09phylg8ih1crgxjadkdb8idbpj9ap62a7cbh8qdx2gyvh5mqf9c";
};
in stdenv.mkDerivation rec {
version = "4.8.1";
stdenv.mkDerivation rec {
version = "4.8.2";
name = "debianutils-${version}";
src = fetchurl {
url = "mirror://debian/pool/main/d/debianutils/debianutils_${version}.tar.xz";
sha256 = checksums."${version}";
sha256 = "0s3w3svcsh984zinkxvpzxi7dc0ginqk0nk299fkrr6k7wlmzssd";
};
meta = {