aboutsummaryrefslogtreecommitdiff
path: root/libTehImage.nix
diff options
context:
space:
mode:
authorDylan <boss@tehbox.org>2025-08-08 15:43:17 +1200
committerDylan <boss@tehbox.org>2025-08-08 15:43:30 +1200
commit308b65134bd9d185741a612bfad3cca80ddddc48 (patch)
tree2157d8e267a4c84c992dc7cf47eaeb6d31f47c78 /libTehImage.nix
parent41ddbec10d11b01ccc10bf7e1dc862a9f3e4c85f (diff)
downloadtehimage-308b65134bd9d185741a612bfad3cca80ddddc48.tar.gz
tehimage-308b65134bd9d185741a612bfad3cca80ddddc48.zip
feat: Added the nix package
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";
+}