nixpkgs/pkgs/tools/misc/dynamic-colors/default.nix
2023-11-11 21:38:06 +01:00

30 lines
763 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "dynamic-colors";
version = "0.2.5";
src = fetchFromGitHub {
owner = "peterhoeg";
repo = "dynamic-colors";
rev = "v${version}";
sha256 = "sha256-jSdwq9WwYZP8MK6z7zJa0q93xfanr6iuvAt8YQkQxxE=";
};
PREFIX = placeholder "out";
postPatch = ''
substituteInPlace bin/dynamic-colors \
--replace /usr/share/dynamic-colors $out/share/dynamic-colors
'';
meta = with lib; {
description = "Change terminal colors on the fly";
homepage = "https://github.com/peterhoeg/dynamic-colors";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
mainProgram = "dynamic-colors";
};
}