forked from mirrors/nixpkgs
xscreensaver: Fix SHA256 hash of upstream tarball.
The upstream tarball has changed, so I checked why this has happened and found a tarball with the old SHA256 hash here: http://fossies.org/linux/misc/xscreensaver-5.33.tar.gz/ After checking the contents of this and the new upstream tarball I found that the old tarball had only .so, .o and .o.d files which now are no longer existent in the new tarball. Seems that the upstream author has accidentally put object files in the source tarball and has now corrected this mistake. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
d06fd884dc
commit
cb94cce94f
|
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
src = fetchurl {
|
||||
url = "http://www.jwz.org/xscreensaver/${name}.tar.gz";
|
||||
sha256 = "0sy4awsak8yhja86n69bmi8i2c91hfs7zbkwn5y81qfrivh8b41j";
|
||||
sha256 = "0k9z64ynpcfy19a33lm6g75ry3mb6zilm3dnm0zq9whrj9hw386l";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
|
|
Loading…
Reference in a new issue