diff options
author | Jonathan Turner <jonathandturner@users.noreply.github.com> | 2021-01-23 05:44:05 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-22 17:44:05 +0100 |
commit | 0bf5669ba3a7bcdcf7db913c25e56a9d32e180b1 (patch) | |
tree | 441cd5b4a06c14026e78ed8f3f974fa5b23f255b /Ports/neofetch | |
parent | 2fe6a313c2a3824da6cf5c5589bfb9ba461086fb (diff) | |
download | serenity-0bf5669ba3a7bcdcf7db913c25e56a9d32e180b1.zip |
Meta: Get building on NixOS (#5005)
Diffstat (limited to 'Ports/neofetch')
-rwxr-xr-x | Ports/neofetch/package.sh | 2 | ||||
-rw-r--r-- | Ports/neofetch/patches/fix-shebang.patch | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Ports/neofetch/package.sh b/Ports/neofetch/package.sh index 1130f87295..6666289616 100755 --- a/Ports/neofetch/package.sh +++ b/Ports/neofetch/package.sh @@ -1,4 +1,4 @@ -#!/bin/bash ../.port_include.sh +#!/usr/bin/env -S bash ../.port_include.sh port=neofetch version=7.0.0 useconfigure=false diff --git a/Ports/neofetch/patches/fix-shebang.patch b/Ports/neofetch/patches/fix-shebang.patch index 9fe36cd60a..ab8efd0494 100644 --- a/Ports/neofetch/patches/fix-shebang.patch +++ b/Ports/neofetch/patches/fix-shebang.patch @@ -2,7 +2,7 @@ +++ neofetch-7.0.0/neofetch 2020-04-27 18:57:54.263417418 +0100 @@ -1,4 +1,4 @@ -#!/usr/bin/env bash -+#!/bin/bash ++#!/usr/bin/env bash # vim: noai:ts=4:sw=4:expandtab # shellcheck source=/dev/null # shellcheck disable=2009 |