about summary refs log tree commit diff
path: root/pkgs/applications/audio/ladspa-sdk/ladspah.nix
blob: 8c4d8a8c1ed57824ccc86617c70743d372baf271 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ runCommand, fetchurl }:

let

  src = fetchurl {
    url = http://www.ladspa.org/ladspa_sdk/ladspa.h.txt;
    sha256 = "1b908csn85ng9sz5s5d1mqk711cmawain2z8px2ajngihdrynb67";
  };

in

runCommand "ladspa.h"
  { meta.description = "LADSPA format audio plugins"; }
  ''
    mkdir -p $out/include
    cp ${src} $out/include/ladspa.h
  ''