Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d24a439d92cd
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 376d7878c239
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jan 22, 2020

  1. string-machine: init at unstable-2020-01-20

    magnetophon authored and Jon committed Jan 22, 2020
    Copy the full SHA
    376d787 View commit details
Showing with 38 additions and 0 deletions.
  1. +36 −0 pkgs/applications/audio/string-machine/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
36 changes: 36 additions & 0 deletions pkgs/applications/audio/string-machine/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{ stdenv, fetchFromGitHub, boost, cairo, lv2, pkg-config }:

stdenv.mkDerivation rec {
pname = "string-machine";
version = "unstable-2020-01-20";

src = fetchFromGitHub {
owner = "jpcima";
repo = pname;
rev = "188082dd0beb9a3c341035604841c53675fe66c4";
sha256 = "0l9xrzp3f0hk6h320qh250a0n1nbd6qhjmab21sjmrlb4ngy672v";
fetchSubmodules = true;
};

postPatch = ''
patchShebangs ./dpf/utils/generate-ttl.sh
'';

nativeBuildInputs = [ pkg-config ];

buildInputs = [
boost cairo lv2
];

makeFlags = [
"PREFIX=$(out)"
];

meta = with stdenv.lib; {
homepage = "https://github.com/jpcima/string-machine";
description = "Digital model of electronic string ensemble instrument";
maintainers = [ maintainers.magnetophon ];
platforms = intersectLists platforms.linux platforms.x86;
license = licenses.boost;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -2062,6 +2062,8 @@ in

step-cli = callPackage ../tools/security/step-cli { };

string-machine = callPackage ../applications/audio/string-machine { };

bash-supergenpass = callPackage ../tools/security/bash-supergenpass { };

sweep-visualizer = callPackage ../tools/misc/sweep-visualizer { };