fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{lib, stdenv, fetchurl, indent}:
2
3stdenv.mkDerivation {
4 name = "libdwg-0.6";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/libdwg/libdwg-0.6.tar.bz2";
8 sha256 = "0l8ks1x70mkna1q7mzy1fxplinz141bd24qhrm1zkdil74mcsryc";
9 };
10
11 nativeBuildInputs = [ indent ];
12
13 hardeningDisable = [ "format" ];
14
15 # Hack to avoid TMPDIR in RPATHs.
16 preFixup = ''rm -rf "$(pwd)" '';
17
18 meta = {
19 description = "Library reading dwg files";
20 homepage = "http://libdwg.sourceforge.net/en/";
21 license = lib.licenses.gpl3;
22 maintainers = [lib.maintainers.marcweber];
23 platforms = lib.platforms.linux;
24 };
25}