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.

20 lines
514 B
Nix
Raw Normal View History

2022-01-12 12:18:48 +00:00
{ fetchurl, pypy2Packages }:
2022-01-12 12:18:48 +00:00
pypy2Packages.buildPythonApplication rec {
2019-08-31 11:41:23 +00:00
pname = "tailor";
version = "0.9.35";
src = fetchurl {
2014-01-08 14:29:38 +00:00
urls = [
"http://darcs.arstecnica.it/tailor/tailor-${version}.tar.gz"
"https://src.fedoraproject.org/repo/pkgs/tailor/tailor-${version}.tar.gz/58a6bc1c1d922b0b1e4579c6440448d1/tailor-${version}.tar.gz"
2014-01-08 14:29:38 +00:00
];
sha256 = "061acapxxn5ab3ipb5nd3nm8pk2xj67bi83jrfd6lqq3273fmdjh";
};
meta = {
description = "Version control tools integration tool";
};
}