mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
21 lines
515 B
Nix
21 lines
515 B
Nix
{stdenv, fetchurl, indent}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libdwg-0.6";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/libdwg/libdwg-0.6.tar.bz2;
|
|
sha256 = "0l8ks1x70mkna1q7mzy1fxplinz141bd24qhrm1zkdil74mcsryc";
|
|
};
|
|
|
|
nativeBuildInputs = [ indent ];
|
|
|
|
meta = {
|
|
description = "Library reading dwg files";
|
|
homepage = http://libdwg.sourceforge.net/en/;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = [stdenv.lib.maintainers.marcweber];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|