Skip to content
Snippets Groups Projects
Commit a9ae4edc authored by Daniel Firth's avatar Daniel Firth
Browse files

hosc: init at 0.19.1

parent 72375708
No related merge requests found
......@@ -293,6 +293,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "hledger-lib" "1.27.1"
, callHackage "hledger" "1.27.1"
, callHackage "hlint" "3.5"
, callHackage "hosc" "0.19.1"
, callHackage "hourglass" "0.2.12"
, callCabal2nix
"hnix"
......
......@@ -377,6 +377,8 @@ final: prev: with pkgs.haskell.lib; {
horizon-gen-nix = prev.callPackage (./pkgs/horizon-gen-nix.nix) { };
hosc = prev.callPackage (./pkgs/hosc.nix) { };
hourglass = prev.callPackage (./pkgs/hourglass.nix) { };
hpack = prev.callPackage (./pkgs/hpack.nix) { };
......
{ mkDerivation
, base
, binary
, blaze-builder
, bytestring
, data-binary-ieee754
, lib
, network
, time
, transformers
}:
mkDerivation {
pname = "hosc";
version = "0.19.1";
sha256 = "e713022269060b53ae893c38c0827bb1a19f767dda96e28ee21d4f1d2e0a0223";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base
binary
blaze-builder
bytestring
data-binary-ieee754
network
time
transformers
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://rohandrape.net/t/hosc";
description = "Haskell Open Sound Control";
license = lib.licenses.gpl3Only;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment