Skip to content
This repository has been archived by the owner on Aug 18, 2020. It is now read-only.

Commit

Permalink
[CBR-179] stack2nix
Browse files Browse the repository at this point in the history
  • Loading branch information
parsonsmatt committed Sep 7, 2018
1 parent 8697e1b commit 9b848b6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16519,7 +16519,6 @@ criterion
deepseq
directory
formatting
log-warper
lens
log-warper
lrucache
Expand Down Expand Up @@ -16961,6 +16960,7 @@ license = stdenv.lib.licenses.mit;
, base
, cardano-sl
, cardano-sl-chain
, cardano-sl-core
, cardano-sl-crypto
, cardano-sl-networking
, cardano-sl-util
Expand All @@ -16985,6 +16985,7 @@ executableHaskellDepends = [
base
cardano-sl
cardano-sl-chain
cardano-sl-core
cardano-sl-crypto
cardano-sl-networking
cardano-sl-util
Expand Down
19 changes: 19 additions & 0 deletions pkgs/hfsevents.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{ mkDerivation, base, bytestring, cereal, Cocoa, CoreServices
, fetchgit, mtl, stdenv, text, unix
}:
mkDerivation {
pname = "hfsevents";
version = "0.1.6";
src = fetchgit {
url = "https://github.com/luite/hfsevents.git";
sha256 = "0smpq3yd5m9jd9fpanaqvhadv6qcyp9y5bz0dya0rnxqg909m973";
rev = "25a53d417d7c7a8fc3116b63e3ba14ca7c8f188f";
};
libraryHaskellDepends = [ base bytestring cereal mtl text unix ];
librarySystemDepends = [ Cocoa ];
libraryToolDepends = [ CoreServices ];
homepage = "http://github.com/luite/hfsevents";
description = "File/folder watching for OS X";
license = stdenv.lib.licenses.bsd3;
platforms = [ "x86_64-darwin" ];
}

0 comments on commit 9b848b6

Please sign in to comment.