summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorAzat Bahawi <azat@bahawi.net>2023-11-16 01:47:45 +0300
committerAzat Bahawi <azat@bahawi.net>2023-11-16 01:47:45 +0300
commit1b39cfb14b608f374208a9483db661ccd1a43230 (patch)
treebe2fefbe6c50f4598a1eb22f8b0a9260726b2c0a /packages
parenta3f9fde2a2d43dd477f402bd4b8df2a1cd29ca43 (diff)
2023-11-16
Diffstat (limited to 'packages')
-rw-r--r--packages/bruh.nix1
-rw-r--r--packages/myip.nix1
-rw-r--r--packages/nixfiles.nix1
-rw-r--r--packages/openssl_1_0_0.nix1
4 files changed, 4 insertions, 0 deletions
diff --git a/packages/bruh.nix b/packages/bruh.nix
index 2b274f1..bad8aa0 100644
--- a/packages/bruh.nix
+++ b/packages/bruh.nix
@@ -27,6 +27,7 @@ stdenv.mkDerivation (finalAttrs: {
description = "Bruh sound, but as a program";
inherit (finalAttrs.src.meta) homepage;
license = licenses.gpl3Only;
+ platforms = platforms.linux;
maintainers = with maintainers; [azahi];
};
})
diff --git a/packages/myip.nix b/packages/myip.nix
index 67ea1ed..f91872b 100644
--- a/packages/myip.nix
+++ b/packages/myip.nix
@@ -17,6 +17,7 @@ writeShellApplication {
description = "A dumb tool to get host's current public IP";
homepage = "https://git.azahi.cc/nixfiles";
license = licenses.wtfpl;
+ platforms = platforms.unix;
maintainers = with maintainers; [azahi];
};
}
diff --git a/packages/nixfiles.nix b/packages/nixfiles.nix
index a114bab..782a193 100644
--- a/packages/nixfiles.nix
+++ b/packages/nixfiles.nix
@@ -178,6 +178,7 @@ in
description = "A helper utility to manage NixOS configurations with Nix flakes";
homepage = "https://git.azahi.cc/nixfiles";
license = licenses.wtfpl;
+ platforms = platforms.unix;
maintainers = with maintainers; [azahi];
};
}
diff --git a/packages/openssl_1_0_0.nix b/packages/openssl_1_0_0.nix
index b1572d1..228922a 100644
--- a/packages/openssl_1_0_0.nix
+++ b/packages/openssl_1_0_0.nix
@@ -33,6 +33,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
description = "Ancient OpenSSL version that some GOG games require";
homepage = "https://downloads.dotslashplay.it/resources/openssl";
license = licenses.asl20;
+ platforms = ["x86_64-linux"];
sourceProvenance = with lib.sourceTypes; [binaryBytecode];
maintainers = with maintainers; [azahi];
};