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: 67ed5b336270
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bf93cdca0d27
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on May 31, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    5675922 View commit details

Commits on Jun 1, 2019

  1. Merge pull request #62303 from marsam/init-gitAndTools.git-standup

    gitAndTools.git-standup: init at 2.3.1
    Ma27 authored Jun 1, 2019
    Copy the full SHA
    bf93cdc View commit details
Original file line number Diff line number Diff line change
@@ -113,6 +113,8 @@ let

git-secrets = callPackage ./git-secrets { };

git-standup = callPackage ./git-standup { };

git-stree = callPackage ./git-stree { };

git-sync = callPackage ./git-sync { };
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub, makeWrapper, git }:

stdenv.mkDerivation rec {
pname = "git-standup";
version = "2.3.1";

src = fetchFromGitHub {
owner = "kamranahmedse";
repo = pname;
rev = version;
sha256 = "0wx9ypyxhpjbrasl6264jmj9fjrpg3gn93dg00cakabz3r7yxxq3";
};

nativeBuildInputs = [ makeWrapper ];

dontBuild = true;

installPhase = ''
install -Dm755 -t $out/bin git-standup
wrapProgram $out/bin/git-standup \
--prefix PATH : "${stdenv.lib.makeBinPath [ git ]}"
'';

meta = with stdenv.lib; {
description = "Recall what you did on the last working day";
homepage = "https://github.com/kamranahmedse/git-standup";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
platforms = platforms.all;
};
}