Skip to content

Commit

Permalink
Merge pull request #73554 from markuskowa/upd-codec2
Browse files Browse the repository at this point in the history
codec2: 0.8.0 -> 0.9.2
  • Loading branch information
markuskowa authored Nov 17, 2019
2 parents 1296f83 + 2eed11e commit e1e381f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions pkgs/development/libraries/codec2/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
{ stdenv, fetchsvn, cmake } :
{ stdenv, fetchFromGitHub, cmake } :

let
version = "0.8";
version = "0.9.2";

in stdenv.mkDerivation {
pname = "codec2";
inherit version;

src = fetchsvn {
url = "https://svn.code.sf.net/p/freetel/code/codec2/branches/${version}";
sha256 = "0qbyaqdn37253s30n6m2ric8nfdsxhkslb9h572kdx18j2yjccki";
src = fetchFromGitHub {
owner = "drowe67";
repo = "codec2";
rev = "v${version}";
sha256 = "1jpvr7bra8srz8jvnlbmhf8andbaavq5v01qjnp2f61za93rzwba";
};

enableParallelBuilding = true;
Expand Down

0 comments on commit e1e381f

Please sign in to comment.