Compare commits
No commits in common. "aceb4ef901d410f61fd5da8efff68b5a02c94ef5" and "808058d576ea24e0574bc16b56cd9a32e798a108" have entirely different histories.
aceb4ef901
...
808058d576
9 changed files with 17 additions and 18 deletions
|
|
@ -40,8 +40,8 @@ in
|
|||
}
|
||||
{
|
||||
block = "battery";
|
||||
format = "{percentage} ({time})";
|
||||
full_format = "{percentage}";
|
||||
format = "{percentage}% ({time})";
|
||||
full_format = "{percentage}%";
|
||||
}
|
||||
{
|
||||
block = "temperature";
|
||||
|
|
|
|||
|
|
@ -5,13 +5,13 @@ stdenvNoCC.mkDerivation rec {
|
|||
|
||||
src = ./bw-pass;
|
||||
|
||||
phases = [ "buildPhase" "installPhase" "fixupPhase" ];
|
||||
|
||||
buildInputs = [
|
||||
makeWrapper
|
||||
shellcheck
|
||||
];
|
||||
|
||||
dontUnpack = true;
|
||||
|
||||
buildPhase = ''
|
||||
shellcheck $src
|
||||
'';
|
||||
|
|
|
|||
|
|
@ -3,15 +3,15 @@ stdenvNoCC.mkDerivation rec {
|
|||
pname = "comma";
|
||||
version = "0.1.0";
|
||||
|
||||
src = ./comma;
|
||||
src = ./. + "/comma";
|
||||
|
||||
phases = [ "buildPhase" "installPhase" "fixupPhase" ];
|
||||
|
||||
buildInputs = [
|
||||
makeWrapper
|
||||
shellcheck
|
||||
];
|
||||
|
||||
dontUnpack = true;
|
||||
|
||||
buildPhase = ''
|
||||
shellcheck $src
|
||||
'';
|
||||
|
|
|
|||
|
|
@ -5,13 +5,13 @@ stdenvNoCC.mkDerivation rec {
|
|||
|
||||
src = ./diff-flake;
|
||||
|
||||
phases = [ "buildPhase" "installPhase" "fixupPhase" ];
|
||||
|
||||
buildInputs = [
|
||||
makeWrapper
|
||||
shellcheck
|
||||
];
|
||||
|
||||
dontUnpack = true;
|
||||
|
||||
buildPhase = ''
|
||||
shellcheck $src
|
||||
'';
|
||||
|
|
|
|||
|
|
@ -8,12 +8,9 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "sha256-FDi4FZ8rjGqRkFlROtcJsv+mks7MmIXQGV4bZrwkQrA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
buildInputs = [
|
||||
ghc
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
which
|
||||
which # Used by tests
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
|
|
|||
|
|
@ -5,13 +5,13 @@ stdenvNoCC.mkDerivation rec {
|
|||
|
||||
src = ./i3-get-window-criteria;
|
||||
|
||||
phases = [ "buildPhase" "installPhase" "fixupPhase" ];
|
||||
|
||||
buildInputs = [
|
||||
makeWrapper
|
||||
shellcheck
|
||||
];
|
||||
|
||||
dontUnpack = true;
|
||||
|
||||
buildPhase = ''
|
||||
shellcheck $src
|
||||
'';
|
||||
|
|
|
|||
|
|
@ -10,6 +10,8 @@ stdenvNoCC.mkDerivation rec {
|
|||
sha256 = "sha256-JiKPDrr9wyD2q5Vsac+OkFdvrDkx6mj/oC7XDVnka74=";
|
||||
};
|
||||
|
||||
phases = [ "installPhase" "fixupPhase" ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
];
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ stdenvNoCC.mkDerivation rec {
|
|||
|
||||
src = unified-hosts-lists;
|
||||
|
||||
dontUnpack = true;
|
||||
phases = [ "installPhase" ];
|
||||
|
||||
installPhase =
|
||||
let
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ stdenvNoCC.mkDerivation rec {
|
|||
sha256 = "sha256-7oYuGegrHVUvAvA16iR8OEe5eTMeSybShSa1PJOe5No=";
|
||||
};
|
||||
|
||||
dontUnpack = true;
|
||||
phases = [ "installPhase" ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue