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: 3945c1d87353
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 09f9bcd19c30
Choose a head ref
  • 7 commits
  • 3 files changed
  • 3 contributors

Commits on Nov 5, 2019

  1. Copy the full SHA
    d096ee5 View commit details
  2. Copy the full SHA
    7c8f37b View commit details

Commits on Nov 7, 2019

  1. targetcli: 2.1.fb49 -> 2.1.50

    * install man page
    markuskowa committed Nov 7, 2019
    Copy the full SHA
    220f04f View commit details

Commits on Nov 17, 2019

  1. Copy the full SHA
    2c067b4 View commit details
  2. Copy the full SHA
    1b9b0dd View commit details
  3. Copy the full SHA
    6b39472 View commit details

Commits on Nov 20, 2019

  1. Merge pull request #67749 from markuskowa/upd-targetcli

    targetcli: 2.1.fb49 -> 2.1.51
    JohnAZoidberg authored Nov 20, 2019
    Copy the full SHA
    09f9bcd View commit details
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/configshell/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

buildPythonPackage rec {
pname = "configshell";
version = "1.1.fb25";
version = "1.1.27";

src = fetchFromGitHub {
owner = "open-iscsi";
repo ="${pname}-fb";
rev = "v${version}";
sha256 = "0zpr2n4105qqsklyfyr9lzl1rhxjcv0mnsl57hgk0m763w6na90h";
sha256 = "1nldzq3097xqgzd8qxv36ydvx6vj2crwanihz53k46is0myrwcnn";
};

propagatedBuildInputs = [ pyparsing six urwid ];
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/rtslib/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

buildPythonPackage rec {
pname = "rtslib";
version = "2.1.fb69";
version = "2.1.71";

src = fetchFromGitHub {
owner = "open-iscsi";
repo ="${pname}-fb";
rev = "v${version}";
sha256 = "17rlcrd9757nq91pa8xjr7147k7mxxp8zdka7arhlgsp3kcnbsfd";
sha256 = "0cn9azi44hf59mp47207igv72kjbkyz4rsvgzmwbpz0s57b0hnab";
};

propagatedBuildInputs = [ six pyudev pygobject3 ];
9 changes: 7 additions & 2 deletions pkgs/os-specific/linux/targetcli/default.nix
Original file line number Diff line number Diff line change
@@ -2,17 +2,22 @@

python.pkgs.buildPythonApplication rec {
pname = "targetcli";
version = "2.1.fb49";
version = "2.1.51";

src = fetchFromGitHub {
owner = "open-iscsi";
repo = "${pname}-fb";
rev = "v${version}";
sha256 = "093dmwc5g6yz4cdgpbfszmc97i7nd286w4x447dvg22hvwvjwqhh";
sha256 = "07i9kyr525hlk32amzgycirwgwykdbjy5fmw6ji0nnhvk2jh4arn";
};

propagatedBuildInputs = with python.pkgs; [ configshell rtslib ];

postInstall = ''
install -D targetcli.8 -t $out/share/man/man8/
install -D targetclid.8 -t $out/share/man/man8/
'';

meta = with stdenv.lib; {
description = "A command shell for managing the Linux LIO kernel target";
homepage = https://github.com/open-iscsi/targetcli-fb;