Compare commits

...

11 commits

9 changed files with 18 additions and 17 deletions

View file

@ -40,8 +40,8 @@ in
} }
{ {
block = "battery"; block = "battery";
format = "{percentage}% ({time})"; format = "{percentage} ({time})";
full_format = "{percentage}%"; full_format = "{percentage}";
} }
{ {
block = "temperature"; block = "temperature";

View file

@ -5,13 +5,13 @@ stdenvNoCC.mkDerivation rec {
src = ./bw-pass; src = ./bw-pass;
phases = [ "buildPhase" "installPhase" "fixupPhase" ];
buildInputs = [ buildInputs = [
makeWrapper makeWrapper
shellcheck shellcheck
]; ];
dontUnpack = true;
buildPhase = '' buildPhase = ''
shellcheck $src shellcheck $src
''; '';

View file

@ -3,15 +3,15 @@ stdenvNoCC.mkDerivation rec {
pname = "comma"; pname = "comma";
version = "0.1.0"; version = "0.1.0";
src = ./. + "/comma"; src = ./comma;
phases = [ "buildPhase" "installPhase" "fixupPhase" ];
buildInputs = [ buildInputs = [
makeWrapper makeWrapper
shellcheck shellcheck
]; ];
dontUnpack = true;
buildPhase = '' buildPhase = ''
shellcheck $src shellcheck $src
''; '';

View file

@ -5,13 +5,13 @@ stdenvNoCC.mkDerivation rec {
src = ./diff-flake; src = ./diff-flake;
phases = [ "buildPhase" "installPhase" "fixupPhase" ];
buildInputs = [ buildInputs = [
makeWrapper makeWrapper
shellcheck shellcheck
]; ];
dontUnpack = true;
buildPhase = '' buildPhase = ''
shellcheck $src shellcheck $src
''; '';

View file

@ -8,9 +8,12 @@ stdenv.mkDerivation rec {
sha256 = "sha256-FDi4FZ8rjGqRkFlROtcJsv+mks7MmIXQGV4bZrwkQrA="; sha256 = "sha256-FDi4FZ8rjGqRkFlROtcJsv+mks7MmIXQGV4bZrwkQrA=";
}; };
buildInputs = [ nativeBuildInputs = [
ghc ghc
which # Used by tests ];
checkInputs = [
which
]; ];
doCheck = true; doCheck = true;

View file

@ -5,13 +5,13 @@ stdenvNoCC.mkDerivation rec {
src = ./i3-get-window-criteria; src = ./i3-get-window-criteria;
phases = [ "buildPhase" "installPhase" "fixupPhase" ];
buildInputs = [ buildInputs = [
makeWrapper makeWrapper
shellcheck shellcheck
]; ];
dontUnpack = true;
buildPhase = '' buildPhase = ''
shellcheck $src shellcheck $src
''; '';

View file

@ -10,8 +10,6 @@ stdenvNoCC.mkDerivation rec {
sha256 = "sha256-JiKPDrr9wyD2q5Vsac+OkFdvrDkx6mj/oC7XDVnka74="; sha256 = "sha256-JiKPDrr9wyD2q5Vsac+OkFdvrDkx6mj/oC7XDVnka74=";
}; };
phases = [ "installPhase" "fixupPhase" ];
nativeBuildInputs = [ nativeBuildInputs = [
makeWrapper makeWrapper
]; ];

View file

@ -5,7 +5,7 @@ stdenvNoCC.mkDerivation rec {
src = unified-hosts-lists; src = unified-hosts-lists;
phases = [ "installPhase" ]; dontUnpack = true;
installPhase = installPhase =
let let

View file

@ -10,7 +10,7 @@ stdenvNoCC.mkDerivation rec {
sha256 = "sha256-7oYuGegrHVUvAvA16iR8OEe5eTMeSybShSa1PJOe5No="; sha256 = "sha256-7oYuGegrHVUvAvA16iR8OEe5eTMeSybShSa1PJOe5No=";
}; };
phases = [ "installPhase" ]; dontUnpack = true;
installPhase = '' installPhase = ''
mkdir -p $out mkdir -p $out