removed redundant code from flake

This commit is contained in:
2025-05-25 23:45:44 +01:00
parent fa5b7a27d5
commit cd8bb2df8c
3 changed files with 29 additions and 38 deletions

View File

@@ -1,6 +1,5 @@
{
description = "Nix flake for P2PRC Haskell library";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
};
@@ -22,6 +21,19 @@
haskell.compiler.ghc98
zlib.dev
];
shellHook = ''
pwd
cd ../../
echo "building package"
pwd
nix build .
echo "building package"
pwd
cd Bindings/Haskell
pwd
echo "done!!!!"
'';
};
}
);