aboutsummaryrefslogtreecommitdiff
path: root/libTehImage.nix
diff options
context:
space:
mode:
Diffstat (limited to 'libTehImage.nix')
-rw-r--r--libTehImage.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/libTehImage.nix b/libTehImage.nix
new file mode 100644
index 0000000..d113fd3
--- /dev/null
+++ b/libTehImage.nix
@@ -0,0 +1,20 @@
+{
+ stdenv,
+ fetchgit,
+}:
+
+
+stdenv.mkDerivation {
+ pname = "libTehImage";
+ version = "0.0.1";
+
+ #outputs = [ "out" "dev" ];
+
+ src = fetchgit {
+ url = "https://git.tehbox.org/cgit/boss/tehimage.git";
+ rev = "v0.0.1";
+ hash = "sha256-S3daS6seroaQJDFbcar+RjVXVV3RciHSx9e0iC+i6+0=";
+ };
+
+ preInstall = "mkdir -p $out/include";
+}