nixpkgs/pkgs/development/libraries/clap/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
696 B
Nix
Raw Normal View History

2023-06-09 23:04:37 +02:00
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "clap";
2023-11-19 06:49:46 +01:00
version = "1.1.10";
2023-06-09 23:04:37 +02:00
src = fetchFromGitHub {
owner = "free-audio";
repo = "clap";
rev = version;
2023-11-19 06:49:46 +01:00
hash = "sha256-AH3kSCp4Q8Nw3To2vuPuMH/cWm3cmzj2OEH/Azcbdmo=";
2023-06-09 23:04:37 +02:00
};
postPatch = ''
substituteInPlace clap.pc.in \
--replace '$'"{prefix}/@CMAKE_INSTALL_INCLUDEDIR@" '@CMAKE_INSTALL_FULL_INCLUDEDIR@'
'';
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Clever Audio Plugin API interface headers";
homepage = "https://cleveraudio.org/";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ ris ];
};
}