mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
Merge pull request #15779 from joachifm/sipcmd-refactor
sipcmd: refactoring
This commit is contained in:
commit
61f92ec541
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchgit, opal, ptlib }:
|
{ stdenv, fetchFromGitHub, opal, ptlib }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
@ -6,9 +6,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
name = "sipcmd-${rev}";
|
name = "sipcmd-${rev}";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/tmakkonen/sipcmd";
|
repo = "sipcmd";
|
||||||
rev = "${rev}";
|
owner = "tmakkonen";
|
||||||
|
inherit rev;
|
||||||
sha256 = "072h9qapmz46r8pxbzkfmc4ikd7dv9g8cgrfrw21q942icbrvq2c";
|
sha256 = "072h9qapmz46r8pxbzkfmc4ikd7dv9g8cgrfrw21q942icbrvq2c";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -25,7 +26,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = https://github.com/tmakkonen/sipcmd;
|
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;
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user