09e0cc7cc7
Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated https://repology.org/repository/nix_stable/problems
16 lines
480 B
Nix
16 lines
480 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libmspack-0.5alpha";
|
|
src = fetchurl {
|
|
url = "http://www.cabextract.org.uk/libmspack/libmspack-0.5alpha.tar.gz";
|
|
sha256 = "04413hynb7zizxnkgy9riik3612dwirkpr6fcjrnfl2za9sz4rw9";
|
|
};
|
|
|
|
meta = {
|
|
description = "A de/compression library for various Microsoft formats";
|
|
homepage = https://www.cabextract.org.uk/libmspack;
|
|
license = stdenv.lib.licenses.lgpl2;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|