mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
lrzip: adding an upstream patch that fixes its md5 checksum.
The next version will have this fix already.
This commit is contained in:
parent
71ffa0ce4e
commit
3bdc4b417f
@ -1,5 +1,11 @@
|
|||||||
{stdenv, fetchurl, zlib, lzo, bzip2, nasm, perl}:
|
{stdenv, fetchurl, zlib, lzo, bzip2, nasm, perl}:
|
||||||
|
|
||||||
|
let
|
||||||
|
md5fix = fetchurl {
|
||||||
|
url = "https://github.com/ckolivas/lrzip/commit/9430b6ff4a58adb69ef4cf74f1245fd5b3b313dd.patch";
|
||||||
|
sha256 = "084x4wi3mamcxphzwf43iw287v1ylrk0xjghg6b5k6vgm9gkqlx8";
|
||||||
|
};
|
||||||
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "lrzip-0.612";
|
name = "lrzip-0.612";
|
||||||
|
|
||||||
@ -10,6 +16,8 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ zlib lzo bzip2 nasm perl ];
|
buildInputs = [ zlib lzo bzip2 nasm perl ];
|
||||||
|
|
||||||
|
patches = [ md5fix ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://ck.kolivas.org/apps/lrzip/;
|
homepage = http://ck.kolivas.org/apps/lrzip/;
|
||||||
description = "The CK LRZIP compression program (LZMA + RZIP)";
|
description = "The CK LRZIP compression program (LZMA + RZIP)";
|
||||||
|
Loading…
Reference in New Issue
Block a user