about summary refs log tree commit diff
path: root/pkgs/profpatsch/nman/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/profpatsch/nman/default.nix')
-rw-r--r--pkgs/profpatsch/nman/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/profpatsch/nman/default.nix b/pkgs/profpatsch/nman/default.nix
index 31461999..f03c4502 100644
--- a/pkgs/profpatsch/nman/default.nix
+++ b/pkgs/profpatsch/nman/default.nix
@@ -1,9 +1,10 @@
 { lib
 , writeRustSimpleBin
+, testRustSimple
 , temp
 }:
 
-writeRustSimpleBin "nman" {
+testRustSimple (writeRustSimpleBin "nman" {
   meta = {
     license = lib.licenses.gpl3Only;
     description = "Open man page in a temporary nix-shell";
@@ -14,4 +15,4 @@ writeRustSimpleBin "nman" {
   postInstall = ''
     install -Dm644 ${./nman.1} "$out/share/man/man1/nman.1"
   '';
-} ./nman.rs
+} ./nman.rs)