about summary refs log tree commit diff
path: root/pkgs/development/tools/knightos
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-07-24 15:15:44 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-07-24 15:15:44 +0700
commite159380cc282c72c3ab2f7ca338135b74a81afd1 (patch)
tree743f2be54f3e0e7bc374d4c0a8423c7de6cc9cb7 /pkgs/development/tools/knightos
parenta5049e8caa06200e15818978dc1f319ee9210b88 (diff)
downloadnixlib-e159380cc282c72c3ab2f7ca338135b74a81afd1.tar
nixlib-e159380cc282c72c3ab2f7ca338135b74a81afd1.tar.gz
nixlib-e159380cc282c72c3ab2f7ca338135b74a81afd1.tar.bz2
nixlib-e159380cc282c72c3ab2f7ca338135b74a81afd1.tar.lz
nixlib-e159380cc282c72c3ab2f7ca338135b74a81afd1.tar.xz
nixlib-e159380cc282c72c3ab2f7ca338135b74a81afd1.tar.zst
nixlib-e159380cc282c72c3ab2f7ca338135b74a81afd1.zip
regenkfs: init at unstable-2020-10-17
Diffstat (limited to 'pkgs/development/tools/knightos')
-rw-r--r--pkgs/development/tools/knightos/regenkfs/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/tools/knightos/regenkfs/default.nix b/pkgs/development/tools/knightos/regenkfs/default.nix
new file mode 100644
index 000000000000..1e8b992dfe09
--- /dev/null
+++ b/pkgs/development/tools/knightos/regenkfs/default.nix
@@ -0,0 +1,23 @@
+{ lib, fetchFromGitHub, rustPlatform }:
+
+rustPlatform.buildRustPackage {
+  pname = "regenkfs";
+  version = "unstable-2020-10-17";
+
+  src = fetchFromGitHub {
+    owner = "siraben";
+    repo = "regenkfs";
+    rev = "652155445fc39bbe6628f6b9415b5cd6863f592f";
+    sha256 = "sha256-zkwOpMNPGstn/y1l1s8blUKpBebY4Ta9hiPYxVLvG6Y=";
+  };
+
+  cargoSha256 = "sha256-05VmQdop4vdzw2XEvVdp9+RNmyZvay1Q7gKN2n8rDEQ=";
+  cargoBuildFlags = [ "--features=c-undef" ];
+
+  meta = with lib; {
+    description = "Reimplementation of genkfs in Rust";
+    homepage = "https://github.com/siraben/regenkfs";
+    license = licenses.mit;
+    maintainers = with maintainers; [ siraben ];
+  };
+}