diff options
| author | lassulus <lassulus@lassul.us> | 2018-09-23 12:45:48 +0200 | 
|---|---|---|
| committer | lassulus <lassulus@lassul.us> | 2018-09-23 13:11:50 +0200 | 
| commit | 3212b4fbfb6fff4a1f133b9e18b84f298c6da65d (patch) | |
| tree | 030400753bbd765cff30a4a237dc77322dd7a079 /examples | |
| parent | 16b43f218d142de49fbd8fae77e6e2c057bfb9d6 (diff) | |
examples/simple: more descriptive names
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/simple.nix | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/examples/simple.nix b/examples/simple.nix index ad62b84..0284bf1 100644 --- a/examples/simple.nix +++ b/examples/simple.nix @@ -1,14 +1,14 @@  let    pkgs = import <nixpkgs> { overlays = [ (import ../pkgs) ]; };  in { -  bash = pkgs.writeBash "hello-world" '' +  bash = pkgs.writeBash "simple.sh" ''     if [[ "test" == "test" ]]; then echo "bash features"; fi    '';    # cc -L/nix/store/...blah/lib -I/nix/store/...blah/include -  dash = pkgs.writeDash "hello-world" '' +  dash = pkgs.writeDash "simple" ''     test '~' = '~' && echo 'dash features'    ''; -  haskell = pkgs.writeHaskell "hello-world" [ "acme-cuteboy" ] '' +  haskell = pkgs.writeHaskell "simple" [ "acme-cuteboy" ] ''      import Acme.CuteBoy      main :: IO () @@ -18,7 +18,7 @@ in {      use boolean;      print "Howdy!\n" if true;    ''; -  python2 = pkgs.writePython2 "hello-world" { deps = [ pkgs.python2Packages.pyyaml ]; } '' +  python2 = pkgs.writePython2 "simple.py" { deps = [ pkgs.python2Packages.pyyaml ]; } ''      import yaml      print yaml.load(""" @@ -27,7 +27,7 @@ in {        - variables      """)    ''; -  python3 = pkgs.writePython3 "hello-world" { deps = [ pkgs.python3Packages.pyyaml ]; } '' +  python3 = pkgs.writePython3 "simple.py" { deps = [ pkgs.python3Packages.pyyaml ]; } ''      import yaml      print(yaml.load(""" | 
