summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-crecord
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-01-15 12:21:45 +0100
committerJörg Thalheim <joerg@higgsboson.tk>2017-01-15 14:23:59 +0100
commit7adf2ff42ec3f8d7c2fb53bf63988a9a2227f4bc (patch)
tree06f5c2c23c5f51e90f1ca53d310602830a673f45 /pkgs/applications/version-management/git-crecord
parentd6517b6e5e111e85ce46c97b366d5f2493533188 (diff)
downloadnixpkgs-7adf2ff42ec3f8d7c2fb53bf63988a9a2227f4bc.tar
nixpkgs-7adf2ff42ec3f8d7c2fb53bf63988a9a2227f4bc.tar.gz
nixpkgs-7adf2ff42ec3f8d7c2fb53bf63988a9a2227f4bc.tar.bz2
nixpkgs-7adf2ff42ec3f8d7c2fb53bf63988a9a2227f4bc.tar.lz
nixpkgs-7adf2ff42ec3f8d7c2fb53bf63988a9a2227f4bc.tar.xz
nixpkgs-7adf2ff42ec3f8d7c2fb53bf63988a9a2227f4bc.tar.zst
nixpkgs-7adf2ff42ec3f8d7c2fb53bf63988a9a2227f4bc.zip
git-crecord: init at 20161216.0
Diffstat (limited to 'pkgs/applications/version-management/git-crecord')
-rw-r--r--pkgs/applications/version-management/git-crecord/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/git-crecord/default.nix b/pkgs/applications/version-management/git-crecord/default.nix
new file mode 100644
index 00000000000..fd999dc17d4
--- /dev/null
+++ b/pkgs/applications/version-management/git-crecord/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchFromGitHub, pythonPackages }:
+
+pythonPackages.buildPythonApplication rec {
+  name = "git-crecord-${version}";
+  version = "20161216.0";
+
+  src = fetchFromGitHub {
+    owner = "andrewshadura";
+    repo = "git-crecord";
+    rev = version;
+    sha256 = "0v3y90zi43myyi4k7q3892dcrbyi9dn2q6xgk12nw9db9zil269i";
+  };
+
+  propagatedBuildInputs = with pythonPackages; [ docutils ];
+
+  meta = {
+    homepage = https://github.com/andrewshadura/git-crecord;
+    description = "Git subcommand to interactively select changes to commit or stage";
+    license = stdenv.lib.licenses.gpl2Plus;
+  };
+}