Merge pull request #254895 from ehmry/nano

nano: fix tiny build
This commit is contained in:
Fabián Heredia Montiel
2023-09-16 12:10:40 -06:00
committed by GitHub
+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/
'';