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

Commits on Oct 26, 2019

  1. mu-repo: init at 1.8.0

    sikmir committed Oct 26, 2019
    Copy the full SHA
    174bb76 View commit details

Commits on Oct 27, 2019

  1. Merge pull request #71992 from sikmir/mu-repo

    mu-repo: init at 1.8.0
    rasendubi authored Oct 27, 2019
    Copy the full SHA
    6f98994 View commit details
Showing with 28 additions and 0 deletions.
  1. +26 −0 pkgs/applications/misc/mu-repo/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
26 changes: 26 additions & 0 deletions pkgs/applications/misc/mu-repo/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ lib, fetchFromGitHub, buildPythonApplication, pytest, git }:

buildPythonApplication rec {
pname = "mu-repo";
version = "1.8.0";

src = fetchFromGitHub {
owner = "fabioz";
repo = pname;
rev = with lib;
"mu_repo_" + concatStringsSep "_" (splitVersion version);
sha256 = "1dxfggzbhiips0ww2s93yba9842ycp0i3x2i8vvcx0vgicv3rv6f";
};

checkInputs = [ pytest git ];
# disable test which assumes it's a git repo
checkPhase = "py.test mu_repo --ignore=mu_repo/tests/test_checkout.py";

meta = with lib; {
description = "Tool to help in dealing with multiple git repositories";
homepage = "http://fabioz.github.io/mu-repo/";
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ sikmir ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -19820,6 +19820,8 @@ in

mtpaint = callPackage ../applications/graphics/mtpaint { };

mu-repo = python3Packages.callPackage ../applications/misc/mu-repo { };

mucommander = callPackage ../applications/misc/mucommander { };

multimarkdown = callPackage ../tools/typesetting/multimarkdown { };