aboutsummaryrefslogtreecommitdiff
path: root/libTehImage.nix
diff options
context:
space:
mode:
Diffstat (limited to 'libTehImage.nix')
-rw-r--r--libTehImage.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/libTehImage.nix b/libTehImage.nix
index d113fd3..d7a9f77 100644
--- a/libTehImage.nix
+++ b/libTehImage.nix
@@ -1,19 +1,25 @@
{
stdenv,
fetchgit,
+ pkgs
}:
stdenv.mkDerivation {
pname = "libTehImage";
- version = "0.0.1";
+ version = "0.0.2";
#outputs = [ "out" "dev" ];
+ buildInputs = [
+ pkgs.gcc
+ pkgs.gnumake
+ ];
+
src = fetchgit {
- url = "https://git.tehbox.org/cgit/boss/tehimage.git";
- rev = "v0.0.1";
- hash = "sha256-S3daS6seroaQJDFbcar+RjVXVV3RciHSx9e0iC+i6+0=";
+ url = "https://git.tehbox.org/boss/tehimage.git";
+ rev = "v0.0.2";
+ hash = "sha256-+kvBfhIqKW5MmtWSZYLUXpOJg14pZ9Qor1N18vcZ2Fc=";
};
preInstall = "mkdir -p $out/include";