tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
libofa: add license
Markus Kowalewski
7 years ago
4d291d5a
4520ced6
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libofa
default.nix
+3
-2
pkgs/development/libraries/libofa/default.nix
···
27
27
28
28
propagatedBuildInputs = [ expat curl fftw ];
29
29
30
30
-
meta = {
30
30
+
meta = with stdenv.lib; {
31
31
homepage = https://code.google.com/archive/p/musicip-libofa/;
32
32
description = "Library Open Fingerprint Architecture";
33
33
longDescription = ''
34
34
LibOFA (Library Open Fingerprint Architecture) is an open-source audio
35
35
fingerprint created and provided by MusicIP'';
36
36
-
platforms = stdenv.lib.platforms.linux;
36
36
+
platforms = platforms.linux;
37
37
+
license = licenses.gpl2;
37
38
};
38
39
}