non important commit
This commit is contained in:
parent
6a45494416
commit
6d517609de
2 changed files with 10 additions and 6 deletions
|
|
@ -5,7 +5,11 @@
|
|||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = {nixpkgs, ...}: let
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
...
|
||||
}: let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
|
|
@ -21,7 +25,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
defaultPackage."${system}" = with import pkgs;
|
||||
defaultPackage."${system}" = with pkgs;
|
||||
stdenv.mkDerivation {
|
||||
name = "${name}";
|
||||
src = self;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
printf("Hellow World!\n");
|
||||
printf("Hello World!\n");
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue