Merge pull request #22294 from florianjacob/update_os-prober

os-prober: 1.65 -> 1.71
This commit is contained in:
Pascal Wittmann 2017-01-30 15:09:50 +01:00 committed by GitHub
commit 97c3fd54a6

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, makeWrapper,
{ stdenv, fetchurl, makeWrapper,
systemd, # udevadm
busybox,
busybox,
coreutils, # os-prober desn't seem to work with pure busybox
devicemapper, # lvs
# optional dependencies
@ -11,11 +11,11 @@ ntfs3g ? null
}:
stdenv.mkDerivation rec {
version = "1.65";
version = "1.71";
name = "os-prober-${version}";
src = fetchurl {
url = "mirror://debian/pool/main/o/os-prober/os-prober_${version}.tar.xz";
sha256 = "c4a7661a52edae722f7e6bacb3f107cf7086cbe768275fadf5398d04360bfc84";
sha256 = "5d6141e02b58e82194422b97d683d61c7ff78175d89c2f055f5d2e7a363bdd20";
};
buildInputs = [ makeWrapper ];