Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3f4144c30a63
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6d43bc3a84a6
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Aug 21, 2019

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ed29145 View commit details

Commits on Aug 26, 2019

  1. Merge pull request #67169 from peterhoeg/u/dyncol

    dynamic-colors: 0.2.2.1 -> 0.2.2.2
    peterhoeg authored Aug 26, 2019
    Copy the full SHA
    6d43bc3 View commit details
Showing with 7 additions and 19 deletions.
  1. +7 −19 pkgs/tools/misc/dynamic-colors/default.nix
26 changes: 7 additions & 19 deletions pkgs/tools/misc/dynamic-colors/default.nix
Original file line number Diff line number Diff line change
@@ -1,38 +1,26 @@
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
name = "dynamic-colors-${version}";
version = "0.2.2.1";
pname = "dynamic-colors";
version = "0.2.2.2";

src = fetchFromGitHub {
owner = "peterhoeg";
repo = "dynamic-colors";
rev = "v${version}";
sha256 = "0qz76n5sspgpz6bz66jfkyr42da3skbpw9wbvxgm3ha343azfaiw";
sha256 = "0i63570z9aqbxa8ixh4ayb3akgjdnlqyl2sbf9d7x8f1pxhk5kd5";
};

dontBuild = true;
dontStrip = true;
PREFIX = placeholder "out";

installPhase = ''
mkdir -p \
$out/bin \
$out/share/dynamic-colors/colorschemes \
$out/share/bash-completion/completions \
$out/share/zsh/site-packages
install -m755 bin/dynamic-colors $out/bin/
install -m644 completions/dynamic-colors.bash $out/share/bash-completion/completions/dynamic-colors
install -m644 completions/dynamic-colors.zsh $out/share/zsh/site-packages/_dynamic-colors
install -m644 colorschemes/* -t $out/share/dynamic-colors/colorschemes
substituteInPlace $out/bin/dynamic-colors \
postPatch = ''
substituteInPlace bin/dynamic-colors \
--replace /usr/share/dynamic-colors $out/share/dynamic-colors
'';

meta = with stdenv.lib; {
description = "Change terminal colors on the fly";
homepage = https://github.com/peterhoeg/dynamic-colors;
homepage = "https://github.com/peterhoeg/dynamic-colors";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;