tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libsamplerate: Remove propagation
William A. Kennington III
10 years ago
42663e41
c5d13d4f
+6
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libsamplerate
default.nix
+6
-4
pkgs/development/libraries/libsamplerate/default.nix
···
1
1
-
{ stdenv, fetchurl, pkgconfig, fftw, libsndfile }:
1
1
+
{ stdenv, fetchurl, pkgconfig
2
2
+
, fftw, libsndfile
3
3
+
}:
2
4
3
5
stdenv.mkDerivation rec {
4
6
name = "libsamplerate-0.1.8";
···
8
10
sha256 = "01hw5xjbjavh412y63brcslj5hi9wdgkjd3h9csx5rnm8vglpdck";
9
11
};
10
12
11
11
-
buildInputs = [ pkgconfig ];
12
12
-
propagatedBuildInputs = [ fftw libsndfile ];
13
13
+
nativeBuildInputs = [ pkgconfig ];
14
14
+
buildInputs = [ fftw libsndfile ];
13
15
14
16
# maybe interesting configure flags:
15
17
#--disable-fftw disable usage of FFTW
···
31
33
# GPL or a commercial-use license (available at
32
34
# http://www.mega-nerd.com/SRC/libsamplerate-cul.pdf)
33
35
licenses = with licenses; [ gpl3.shortName unfree ];
34
34
-
maintainers = with maintainers; [ lovek323 ];
36
36
+
maintainers = with maintainers; [ lovek323 wkennington ];
35
37
platforms = platforms.all;
36
38
};
37
39
}