Giter VIP home page Giter VIP logo

nix-writers's Introduction

nix library extension, containing sophisticated script and code generator functions.

How to include as overlay

{ config, pkgs, ... }:
let

  # fetch the repository
  # ------------------
  # nix-prefetch-git is your friend to create this part.
  nix-writers = (import <nixpkgs> {}).fetchgit {
    url    = "https://cgit.krebsco.de/nix-writers";
    rev    = "c8d71ce6acbae124a7bc162323442979a1d6df06";
    sha256 = "0r1p34a3jvm55v5sbkfbjpqcld2cbdrvc5685g723b1frhw666ag";
  };

in {

  # include the repository as overlay
  nixpkgs.config.packageOverrides = import "${nix-writers}/pkgs" pkgs;

  ...

}

How to use the scripts

once you've included the nix-writers as overlay you can use the scripts to create to create binaries (for example)

  environment.systemPackages = with pkgs; [

    # Haskell example
    (writeHaskellPackage "nix-writers-example-haskell" {
      executables."nix-writers-example-haskell".text = ''
        main = print "this is a writeHaskell example"
      '';
    })

    # C example
    (writeC "nix-writers-example-c" {
      destination = "/bin/nix-writers-example-c";
    } ''
      int main() { printf("this is a writeC example!\n"); }
    '')

    # Dash example
    (writeDashBin "nix-writers-example-dash" ''
      echo "this is a writeDash example!"
    '')

  ];

nix-writers's People

Contributors

lassulus avatar 4z3 avatar mrvandalo avatar tomberek avatar

Watchers

James Cloos avatar  avatar

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.