forked from mirrors/nixpkgs
commit
aebd423577
38
pkgs/applications/audio/freac/default.nix
Normal file
38
pkgs/applications/audio/freac/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
|
||||
, boca
|
||||
, smooth
|
||||
, systemd
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "freac";
|
||||
version = "1.1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "enzo1982";
|
||||
repo = "freac";
|
||||
rev = "v${version}";
|
||||
sha256 = "1sdrsc5pn5901bbds7dj02n71zn5rs4wnv2xxs8ffql4b7jjva0m";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
boca
|
||||
smooth
|
||||
systemd
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"prefix=$(out)"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "The fre:ac audio converter project";
|
||||
license = licenses.gpl2Plus;
|
||||
homepage = "https://www.freac.org/";
|
||||
maintainers = with maintainers; [ shamilton ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
51
pkgs/development/libraries/boca/default.nix
Normal file
51
pkgs/development/libraries/boca/default.nix
Normal file
|
@ -0,0 +1,51 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
|
||||
, expat
|
||||
, libcdio
|
||||
, libcdio-paranoia
|
||||
, libpulseaudio
|
||||
, smooth
|
||||
, uriparser
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "BoCA";
|
||||
version = "1.0.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "enzo1982";
|
||||
repo = "boca";
|
||||
rev = "v${version}";
|
||||
sha256 = "0x6pqd5cdag0l283lkq01qaqwyf1skxbncdwig8b2s742nbzjlz8";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
expat
|
||||
libcdio
|
||||
libcdio-paranoia
|
||||
libpulseaudio
|
||||
smooth
|
||||
uriparser
|
||||
zlib
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"prefix=$(out)"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A component library used by the fre:ac audio converter";
|
||||
license = licenses.gpl2Plus;
|
||||
homepage = "https://github.com/enzo1982/boca";
|
||||
maintainers = with maintainers; [ shamilton ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
43
pkgs/development/libraries/smooth/default.nix
Normal file
43
pkgs/development/libraries/smooth/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
|
||||
, gtk3
|
||||
, curl
|
||||
, libxml2
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "smooth";
|
||||
version = "0.9.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "enzo1982";
|
||||
repo = "smooth";
|
||||
rev = "v${version}";
|
||||
sha256 = "05j5gk6kz2089x8bcq2l0kjspfiiymxn69jcxl4dh9lw96blbadr";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"prefix=$(out)"
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gtk3
|
||||
curl
|
||||
libxml2
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "The smooth Class Library";
|
||||
license = licenses.artistic2;
|
||||
homepage = "http://www.smooth-project.org/";
|
||||
maintainers = with maintainers; [ shamilton ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -1721,6 +1721,8 @@ in
|
|||
|
||||
bmake = callPackage ../development/tools/build-managers/bmake { };
|
||||
|
||||
boca = callPackage ../development/libraries/boca { };
|
||||
|
||||
bochs = callPackage ../applications/virtualization/bochs { };
|
||||
|
||||
bubblewrap = callPackage ../tools/admin/bubblewrap { };
|
||||
|
@ -4376,6 +4378,8 @@ in
|
|||
mkFranzDerivation = callPackage ../applications/networking/instant-messengers/franz/generic.nix { };
|
||||
};
|
||||
|
||||
freac = callPackage ../applications/audio/freac { };
|
||||
|
||||
freedroid = callPackage ../games/freedroid { };
|
||||
|
||||
freedroidrpg = callPackage ../games/freedroidrpg { };
|
||||
|
@ -23019,6 +23023,8 @@ in
|
|||
|
||||
smallwm = callPackage ../applications/window-managers/smallwm { };
|
||||
|
||||
smooth = callPackage ../development/libraries/smooth { };
|
||||
|
||||
smos = callPackage ../applications/misc/smos { };
|
||||
|
||||
spectrwm = callPackage ../applications/window-managers/spectrwm { };
|
||||
|
|
Loading…
Reference in a new issue