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: 643de9b82c65
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8ec6df139538
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 4, 2019

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    0fc454c View commit details

Commits on Jun 8, 2019

  1. Merge pull request #62683 from dtzWill/update/tgt-1.0.78

    tgt: 1.0.77 -> 1.0.78, touchup
    fpletz authored Jun 8, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8ec6df1 View commit details
Showing with 5 additions and 6 deletions.
  1. +5 −6 pkgs/tools/networking/tgt/default.nix
11 changes: 5 additions & 6 deletions pkgs/tools/networking/tgt/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{ stdenv, fetchFromGitHub, libxslt, libaio, systemd, perl, perlPackages
, docbook_xsl }:

let
version = "1.0.77";
in stdenv.mkDerivation rec {
name = "tgt-${version}";
stdenv.mkDerivation rec {
pname = "tgt";
version = "1.0.78";

src = fetchFromGitHub {
owner = "fujita";
repo = "tgt";
repo = pname;
rev = "v${version}";
sha256 = "1qhck8v5057wn9nb1nsq6dzhvqzz51x8i3n0p1x36zbsmdjy2ajw";
sha256 = "0778silfwvbpqljxdid96nn0vkdii3fszqp6w6w2bn9hdyxhqrjp";
};

buildInputs = [ libxslt systemd libaio docbook_xsl ];