Some of these should be longDescriptions, but most others just
shouldn't contain newlines. E.g. write
description = "Bla";
and not
description = ''
Bla
'';
This pollutes "nix-env -qa --description" output.
svn path=/nixpkgs/trunk/; revision=14310
17 lines
379 B
Nix
17 lines
379 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "chmlib-0.39";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/${name}.tar.bz2";
|
|
sha256 = "0hgzw121ffmk79wbpkd0394y5ah99c3i85z6scp958mmkr25sc6j";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://www.jedrea.com/chmlib;
|
|
license = "LGPL";
|
|
description = "A library for dealing with Microsoft ITSS/CHM format files";
|
|
};
|
|
}
|