Giter Club home page Giter Club logo

nix-hello-world's Introduction

Nix Hello World

This is just a simple program to experience on Nix derivation/packages.

Build or Install in Nix Environment

Build

To build this program by Nix, clone or download this project and run the following command at the root directory of the project:

nix-build

or the long version by specifying the file: nix-build default.nix, or even doing instantiate and realise step-by-step: nix-store -r $(nix-instantiate default.nix).

Install

To install this program in Nix Environment, run the following command at the root directory of the project:

nix-env -i -f default.nix

or the long version: nix-env --install --file default.nix.

Inspect

You can get the out path by running nix-store -q --outputs $(nix-instantiate default.nix) or nix eval '("${import ./default.nix}")' before installation, or nix-env -q --out-path --no-name hello after installing.

To see the contents of the .drv file, run: nix show-derivation $(nix-instantiate default.nix) or nix show-derivation $(nix-store -q --deriver $(nix eval '("${import ./default.nix}")' | cut -d '"' -f 1)).

Build Manually

You can build it manually with gcc by running:

gcc src/hello.c -o hello

References

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.