Unverified Commit a78a071d authored by Fabián Heredia Montiel's avatar Fabián Heredia Montiel Committed by GitHub
Browse files

Merge pull request #254895 from ehmry/nano

nano: fix tiny build
parents 96839fcb d14ea5ec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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/
  '';