hwatch: expand platforms

This commit is contained in:
figsoda 2023-07-30 11:20:02 -04:00
parent 195110917e
commit b7edd6fd30

View file

@ -24,19 +24,16 @@ rustPlatform.buildRustPackage rec {
passthru.tests.version = testers.testVersion { passthru.tests.version = testers.testVersion {
package = hwatch; package = hwatch;
command = "hwatch --version";
version = version;
}; };
meta = with lib; { meta = with lib; {
homepage = "https://github.com/blacknon/hwatch"; homepage = "https://github.com/blacknon/hwatch";
description= "Modern alternative to the watch command"; description = "Modern alternative to the watch command";
longDescription = '' longDescription = ''
A modern alternative to the watch command, records the differences in A modern alternative to the watch command, records the differences in
execution results and can check this differences at after. execution results and can check this differences at after.
''; '';
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ hamburger1984 ]; maintainers = with maintainers; [ hamburger1984 ];
platforms = platforms.linux;
}; };
} }