nixpkgs/pkgs/applications/version-management/tailor/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.1 KiB
Nix
Raw Normal View History

2022-12-08 04:10:23 +00:00
{ lib
, python3
, fetchurl
}:
2022-12-08 04:10:23 +00:00
python3.pkgs.buildPythonApplication rec {
2019-08-31 11:41:23 +00:00
pname = "tailor";
2022-12-08 04:10:23 +00:00
version = "0.9.37";
src = fetchurl {
2022-12-08 04:10:23 +00:00
url = "https://gitlab.com/ports1/tailor/-/archive/0.937/tailor-0.937.tar.gz";
hash = "sha256-Bdf8ZCRsbCsFz1GRxyQxxndXSsm8oOL2738m9UxOTVc=";
};
2022-12-08 04:10:23 +00:00
propagatedBuildInputs = with python3.pkgs; [
future
];
# AssertionError: Tailor Darcs repository not found!
doCheck = false;
meta = with lib; {
description = "A tool to migrate changesets between various kinds of version control system.";
longDescription = ''
With its ability to "translate the history" from one VCS kind to another,
this tool makes it easier to keep the upstream changes merged in
a own branch of a product.
Tailor is able to fetch the history from Arch, Bazaar, CVS, Darcs, Monotone,
Perforce or Subversion and rewrite it over Aegis, Bazaar, CVS, Darcs, Git,
Mercurial, Monotone and Subversion.
'';
homepage = "https://gitlab.com/ports1/tailor";
license = licenses.gpl1Plus;
platforms = platforms.unix;
};
}