Skip to content

patlux/nix-learning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nix-learning

My first steps with nix

make

Packaging existing software

https://nix.dev/tutorials/packaging-existing-software

I managed to package a rust-based tool named yek. To create the package and execute it:

# Executes "nix-build" (old way)
make yek
./package/result/bin/yek


# To build using the new Nix commands:
cd packages
nix build

Packaging own app

See ./zig-app

cd ./zig-app
# build & run
nix build
./result/bin/zig-app

# or in one command
nix run

About

My first steps with nix

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published