Codebase list ohcount / lintian-fixes/main test / src_dir / nix.nix
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

nix.nix @lintian-fixes/mainraw · history · blame

{pkgs,config}:

# one line comment
{
/* mulpiple line comment
   foo = 21;
*/
  bar = "
    #!/bin/sh

    ls -la
    # comment
    echo hello #comment
  ";
	
  baz = ''
    #!/bin/sh

    ls -la
    # comment
    echo hello #comment
  '';
  nixHttp = [ http://nixos.org/ ];
}