Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / version-management / git-when-merged / default.nix
blob00c9bfa0ae4af40f68eb4877f42969999125a64e
1 { lib, stdenv, fetchFromGitHub, python3 }:
3 stdenv.mkDerivation rec {
4   pname = "git-when-merged";
5   version = "1.2.1";
7   src = fetchFromGitHub {
8     owner = "mhagger";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-Yp/GNzD+7EPlk/kzZnT1eiSNsSxpYEiZezRbUU3HfLc=";
12   };
14   buildInputs = [ python3 ];
16   installPhase = ''
17     install -D --target-directory $out/bin/ bin/git-when-merged
18   '';
20   meta = with lib; {
21     description =
22       "Helps you figure out when and why a commit was merged into a branch";
23     longDescription = ''
24       If you use standard Git workflows, then you create a feature
25       branch for each feature that you are working on. When the feature
26       is complete, you merge it into your master branch. You might even
27       have sub-feature branches that are merged into a feature branch
28       before the latter is merged.
30       In such a workflow, the first-parent history of master consists
31       mainly of merges of feature branches into the mainline. git
32       when-merged can be used to ask, "When (and why) was commit C
33       merged into the current branch?"
34     '';
35     homepage = "https://github.com/mhagger/git-when-merged";
36     license = licenses.gpl2Only;
37     platforms = python3.meta.platforms;
38     maintainers = with maintainers; [ DamienCassou ];
39   };