bristol: add desktop item
This commit is contained in:
parent
0ce7e240d0
commit
55d01d690b
1 changed files with 18 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchurl, alsa-lib, libjack2, pkg-config, libpulseaudio, xorg }:
|
{ lib, stdenv, fetchurl, alsa-lib, libjack2, pkg-config, libpulseaudio, xorg, copyDesktopItems, makeDesktopItem }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "bristol";
|
pname = "bristol";
|
||||||
|
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1fi2m4gmvxdi260821y09lxsimq82yv4k5bbgk3kyc3x1nyhn7vx";
|
sha256 = "1fi2m4gmvxdi260821y09lxsimq82yv4k5bbgk3kyc3x1nyhn7vx";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config copyDesktopItems ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
alsa-lib
|
alsa-lib
|
||||||
libjack2
|
libjack2
|
||||||
|
@ -34,6 +34,22 @@ stdenv.mkDerivation rec {
|
||||||
sed -e "s@\`which brighton\`@$out/bin/brighton@g" -i bin/startBristol
|
sed -e "s@\`which brighton\`@$out/bin/brighton@g" -i bin/startBristol
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/share/icons/hicolor/scalable/apps/
|
||||||
|
ln -s $out/share/bristol/bitmaps/bicon.svg $out/share/icons/hicolor/scalable/apps/
|
||||||
|
'';
|
||||||
|
|
||||||
|
desktopItems = [
|
||||||
|
(makeDesktopItem {
|
||||||
|
name = "Bristol";
|
||||||
|
exec = "bristol";
|
||||||
|
icon = "bicon";
|
||||||
|
desktopName = "Bristol";
|
||||||
|
comment = "Graphical user interface for the Bristol synthesizer emulator";
|
||||||
|
categories = [ "AudioVideo" ];
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A range of synthesiser, electric piano and organ emulations";
|
description = "A range of synthesiser, electric piano and organ emulations";
|
||||||
homepage = "https://bristol.sourceforge.net";
|
homepage = "https://bristol.sourceforge.net";
|
||||||
|
|
Loading…
Reference in a new issue