mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
27 lines
747 B
Nix
27 lines
747 B
Nix
{ lib, stdenv, fetchFromGitHub, meson, pkg-config, ninja, liblo, libjack2, fltk }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "new-session-manager";
|
|
version = "1.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxaudio";
|
|
repo = "new-session-manager";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-5G2GlBuKjC/r1SMm78JKia7bMA97YcvUR5l6zBucemw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson pkg-config ninja ];
|
|
|
|
buildInputs = [ liblo libjack2 fltk ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://new-session-manager.jackaudio.org/";
|
|
description = "Session manager designed for audio applications";
|
|
maintainers = [ maintainers._6AA4FD ];
|
|
license = licenses.gpl3Plus;
|
|
platforms = ["x86_64-linux"];
|
|
};
|
|
}
|