spacepaste

  1.  
  2. (import <nixpkgs> {
  3. crossSystem = (import <nixpkgs/lib>).systems.examples.musl64;
  4. overlays = [(self: super: {
  5. musl = self.stdenv.mkDerivation {
  6. name = "musl";
  7. src = builtins.fetchGit {
  8. url = "git://git.musl-libc.org/musl/";
  9. ref = "v1.1.18";
  10. };
  11. dontDisableStatic = true;
  12. };
  13. })];
  14. }).pkgs
  15.