Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 17 lines 477 B view raw
1{stdenv, fetchurl}: 2 3stdenv.mkDerivation rec { 4 name = "libmspack-0.7.1alpha"; 5 6 src = fetchurl { 7 url = "https://www.cabextract.org.uk/libmspack/${name}.tar.gz"; 8 sha256 = "0zn4vwzk5ankgd0l88cipan19pzbzv0sm3fba17lvqwka3dp1acp"; 9 }; 10 11 meta = { 12 description = "A de/compression library for various Microsoft formats"; 13 homepage = https://www.cabextract.org.uk/libmspack; 14 license = stdenv.lib.licenses.lgpl2; 15 platforms = stdenv.lib.platforms.unix; 16 }; 17}