generated from nix-community/nur-packages-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05e58ad
commit b0cbba9
Showing
5 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"just-a-sample-bin": { | ||
"cargoLocks": null, | ||
"date": null, | ||
"extract": null, | ||
"name": "just-a-sample-bin", | ||
"passthru": null, | ||
"pinned": false, | ||
"src": { | ||
"name": null, | ||
"sha256": "sha256-E94eKlubCsIn4TwL4HnU6NJsY7NvrDRBK3LpOGsUgsA=", | ||
"type": "url", | ||
"url": "https://github.com/BOBONA/Just-a-Sample/releases/download/release/Linux.VST3.zip" | ||
}, | ||
"version": "release" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# This file was generated by nvfetcher, please do not modify it manually. | ||
{ fetchgit, fetchurl, fetchFromGitHub, dockerTools }: | ||
{ | ||
just-a-sample-bin = { | ||
pname = "just-a-sample-bin"; | ||
version = "release"; | ||
src = fetchurl { | ||
url = "https://github.com/BOBONA/Just-a-Sample/releases/download/release/Linux.VST3.zip"; | ||
sha256 = "sha256-E94eKlubCsIn4TwL4HnU6NJsY7NvrDRBK3LpOGsUgsA="; | ||
}; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
pkgs, | ||
sources, | ||
utils, | ||
... | ||
}: | ||
pkgs.stdenv.mkDerivation { | ||
inherit (sources.just-a-sample-bin) pname version src; | ||
sourceRoot = "."; | ||
|
||
nativeBuildInputs = with pkgs; [ | ||
autoPatchelfHook | ||
unzip | ||
]; | ||
|
||
buildInputs = utils.juce.commonBuildInputs; | ||
|
||
buildPhase = '' | ||
mkdir -p $out/lib/vst3 | ||
cp -r JustASample.vst3 $out/lib/vst3 | ||
''; | ||
|
||
meta = with pkgs.lib; { | ||
description = "Just a Sample is a modern, open-source audio sampler"; | ||
homepage = "https://bobona.github.io/just-a-sample/"; | ||
license = licenses.mit; | ||
platforms = platforms.linux; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[just-a-sample-bin] | ||
src.github = "BOBONA/Just-a-Sample" | ||
fetch.url = "https://github.com/BOBONA/Just-a-Sample/releases/download/$ver/Linux.VST3.zip" |