summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/audio
diff options
context:
space:
mode:
authorNicolò Balzarotti <anothersms@gmail.com>2017-10-05 11:28:35 +0200
committerNicolò Balzarotti <anothersms@gmail.com>2017-10-05 11:42:32 +0200
commit0c2b37a75d4e8232f8a20326894f41cb49bed8b0 (patch)
tree2d2943b74f7ca3d372ae913148493a5f72543f97 /pkgs/development/libraries/audio
parent0eb0a404e535d8397635dbc3cf44982558a60f01 (diff)
ntk: 2017-04-22 -> 1.3.1000
Diffstat (limited to 'pkgs/development/libraries/audio')
-rw-r--r--pkgs/development/libraries/audio/ntk/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/development/libraries/audio/ntk/default.nix b/pkgs/development/libraries/audio/ntk/default.nix
index 35144862ce9b..7df258877d79 100644
--- a/pkgs/development/libraries/audio/ntk/default.nix
+++ b/pkgs/development/libraries/audio/ntk/default.nix
@@ -1,12 +1,13 @@
-{ stdenv, fetchgit, cairo, libjpeg, libXft, pkgconfig, python2 }:
+{ stdenv, fetchFromGitHub, cairo, libjpeg, libXft, pkgconfig, python2 }:
stdenv.mkDerivation rec {
name = "ntk-${version}";
- version = "2017-04-22";
- src = fetchgit {
- url = "git://git.tuxfamily.org/gitroot/non/fltk.git";
- rev = "92365eca0f9a6f054abc70489c009aba0fcde0ff";
- sha256 = "0pph7hf07xaa011zr40cs62f3f7hclfbv5kcrl757gcp2s5pi2iq";
+ version = "1.3.1000";
+ src = fetchFromGitHub {
+ owner = "original-male";
+ repo = "ntk";
+ rev = "v${version}";
+ sha256 = "0j38mhnfqy6swcrnc5zxcwlqi8b1pgklyghxk6qs1lf4japv2zc0";
};
buildInputs = [
@@ -27,7 +28,7 @@ stdenv.mkDerivation rec {
version = "${version}";
homepage = http://non.tuxfamily.org/;
license = stdenv.lib.licenses.lgpl21;
- maintainers = [ stdenv.lib.maintainers.magnetophon ];
+ maintainers = with stdenv.lib.maintainers; [ magnetophon nico202 ];
platforms = stdenv.lib.platforms.linux;
};
}