Packaging/Quirks and Caveats: Difference between revisions

imported>Lheckemann
imported>Makefu
No edit summary
Line 1: Line 1:
This article is about the quirks on how to package software where the source code is available.
A good start for packaging your first piece if software is the [http://nixos.org/nixpkgs/manual/#chap-quick-start Quickstart Chapter in the nixpkgs manual]
A good start for packaging your first piece if software is the [http://nixos.org/nixpkgs/manual/#chap-quick-start Quickstart Chapter in the nixpkgs manual]
Also see the [[Generic_Algorithm_on_Doing_Packaging|Generic Algorithm on doing Packaging]]
Also see the [[Generic_Algorithm_on_Doing_Packaging|Generic Algorithm on doing Packaging]]


For packaging executable without building them from source check out the article [[Packaging Binaries]].


== Build software with Autotools ==
== Build software with Autotools ==
Line 55: Line 58:
This can happen when importing python libraries:  
This can happen when importing python libraries:  
Solution: add <code>${stdenv.cc.cc.lib}/lib/libstdc++.so.6</code> to the <code>LD_LIBRARY_PATH</code>.
Solution: add <code>${stdenv.cc.cc.lib}/lib/libstdc++.so.6</code> to the <code>LD_LIBRARY_PATH</code>.
[[Category:Guide]]