about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2015-09-22 16:20:20 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2015-09-22 16:35:44 +0200
commit452ebd19879e626dc95329d5f1bee56b9154950e (patch)
treefa96955e9ee8197e0b26cf08a346e82f177935c2 /pkgs/applications/version-management
parentfbaaa9cccc868bd9cb33b97c08997ca37e9a66b8 (diff)
downloadnixlib-452ebd19879e626dc95329d5f1bee56b9154950e.tar
nixlib-452ebd19879e626dc95329d5f1bee56b9154950e.tar.gz
nixlib-452ebd19879e626dc95329d5f1bee56b9154950e.tar.bz2
nixlib-452ebd19879e626dc95329d5f1bee56b9154950e.tar.lz
nixlib-452ebd19879e626dc95329d5f1bee56b9154950e.tar.xz
nixlib-452ebd19879e626dc95329d5f1bee56b9154950e.tar.zst
nixlib-452ebd19879e626dc95329d5f1bee56b9154950e.zip
gitinspector: init at 0.4.1
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/gitinspector/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/gitinspector/default.nix b/pkgs/applications/version-management/gitinspector/default.nix
new file mode 100644
index 000000000000..43df0e5b885f
--- /dev/null
+++ b/pkgs/applications/version-management/gitinspector/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchzip, buildPythonPackage }:
+
+buildPythonPackage rec {
+  name = "gitinspector-${version}";
+  version = "0.4.1";
+  namePrefix = "";
+
+  src = fetchzip {
+    url = "https://github.com/ejwa/gitinspector/archive/v${version}.tar.gz";
+    sha256 = "07kjvf9cj6g6gvjgnnas5facm3nhxppf0l0fcxyd4vq6xhdb3swp";
+    name = name + "-src";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/ejwa/gitinspector;
+    description = "Statistical analysis tool for git repositories";
+    license = licenses.gpl3;
+    platforms = platforms.all;
+    maintainers = [ maintainers.bjornfor ];
+  };
+}