summary refs log tree commit diff
path: root/pkgs/development/libraries/libgig/default.nix
blob: 4adb7e5357891e3586b573181ee46077b58437fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchsvn, autoconf, automake, libsndfile, libtool, pkgconfig, libuuid }:

stdenv.mkDerivation rec {
  name = "libgig-svn-${version}";
  version = "2334";

  src = fetchsvn {
    url = "https://svn.linuxsampler.org/svn/libgig/trunk";
    rev = "${version}";
    sha256 = "0i7sj3zm6banl5avjdxblx0mlbxxzbsbr4x5hsl2fhrdsv5dnxhc";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ autoconf automake libsndfile libtool libuuid ];

  preConfigure = "make -f Makefile.cvs";

  meta = with stdenv.lib; {
    homepage = http://www.linuxsampler.org;
    description = "Gigasampler file access library";
    license = licenses.gpl2;
    maintainers = [ maintainers.goibhniu ];
    platforms = platforms.linux;
  };
}