libcdada: init at 0.3.5
This commit is contained in:
parent
107a5943bd
commit
986159b823
37
pkgs/development/libraries/libcdada/default.nix
Normal file
37
pkgs/development/libraries/libcdada/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, autoreconfHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "libcdada";
|
||||||
|
version = "0.3.5";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "msune";
|
||||||
|
repo = "libcdada";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0vcsf3s4fbw2w33jjc8b509kc0xb6ld58l8wfxgqwjqx5icfg1ps";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoreconfHook
|
||||||
|
];
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--without-tests"
|
||||||
|
"--without-examples"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Library for basic data structures in C";
|
||||||
|
longDescription = ''
|
||||||
|
Basic data structures in C: list, set, map/hashtable, queue... (libstdc++ wrapper)
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/msune/libcdada";
|
||||||
|
license = licenses.bsd2;
|
||||||
|
maintainers = with maintainers; [ _0x4A6F ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -16852,6 +16852,8 @@ with pkgs;
|
|||||||
|
|
||||||
libcerf = callPackage ../development/libraries/libcerf {};
|
libcerf = callPackage ../development/libraries/libcerf {};
|
||||||
|
|
||||||
|
libcdada = callPackage ../development/libraries/libcdada { };
|
||||||
|
|
||||||
libcdaudio = callPackage ../development/libraries/libcdaudio { };
|
libcdaudio = callPackage ../development/libraries/libcdaudio { };
|
||||||
|
|
||||||
libcddb = callPackage ../development/libraries/libcddb { };
|
libcddb = callPackage ../development/libraries/libcddb { };
|
||||||
|
Loading…
Reference in New Issue
Block a user