nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 34 lines 687 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitLab, 5 meson, 6 ninja, 7}: 8 9stdenv.mkDerivation { 10 pname = "raul"; 11 version = "2.0.0-unstable-2024-07-04"; 12 13 src = fetchFromGitLab { 14 owner = "drobilla"; 15 repo = "raul"; 16 rev = "9097952a918f8330a5db9039ad390fc2457f841d"; 17 hash = "sha256-k+EU3ROVJyjJPAtNxPmRXp9DALpUHzohCLL6Xe3NUxk="; 18 }; 19 20 nativeBuildInputs = [ 21 meson 22 ninja 23 ]; 24 25 strictDeps = true; 26 27 meta = { 28 description = "C++ utility library primarily aimed at audio/musical applications"; 29 homepage = "http://drobilla.net/software/raul"; 30 license = lib.licenses.gpl3; 31 maintainers = with lib.maintainers; [ t4ccer ]; 32 platforms = lib.platforms.unix; 33 }; 34}