Skip to content

Commit

Permalink
Merge pull request #15779 from joachifm/sipcmd-refactor
Browse files Browse the repository at this point in the history
sipcmd: refactoring
  • Loading branch information
joachifm committed May 28, 2016
2 parents 73e0c95 + bb49895 commit 61f92ec
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pkgs/applications/networking/sipcmd/default.nix
@@ -1,14 +1,15 @@
{ stdenv, fetchgit, opal, ptlib }:
{ stdenv, fetchFromGitHub, opal, ptlib }:

stdenv.mkDerivation rec {

rev = "3090e9f";

name = "sipcmd-${rev}";

src = fetchgit {
url = "https://github.com/tmakkonen/sipcmd";
rev = "${rev}";
src = fetchFromGitHub {
repo = "sipcmd";
owner = "tmakkonen";
inherit rev;
sha256 = "072h9qapmz46r8pxbzkfmc4ikd7dv9g8cgrfrw21q942icbrvq2c";
};

Expand All @@ -25,7 +26,7 @@ stdenv.mkDerivation rec {

meta = {
homepage = https://github.com/tmakkonen/sipcmd;
description = "sipcmd - the command line SIP/H.323/RTP softphone";
description = "The command line SIP/H.323/RTP softphone";
platforms = with stdenv.lib.platforms; linux;
};
}
Expand Down

0 comments on commit 61f92ec

Please sign in to comment.