nano: fix tiny build

This commit is contained in:
Emery Hemingway
2023-09-13 08:56:11 +02:00
parent 5d2b2523a0
commit d14ea5ecd1
+1 -1
View File
@@ -32,7 +32,7 @@ in stdenv.mkDerivation rec {
(lib.enableFeature enableTiny "tiny")
];
postInstall = ''
postInstall = if enableTiny then null else ''
cp ${nixSyntaxHighlight}/nix.nanorc $out/share/nano/
'';