summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/hydron
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-03-17 23:23:16 +0000
committerJörg Thalheim <joerg@thalheim.io>2020-03-23 08:14:47 +0000
commit9050cd5a5a734389164ca2774ff51e113e9b6a66 (patch)
treeb221de205a085ec40970f8a9a12fbce61b39dbc5 /pkgs/servers/hydron
parentb29aa1206d0541ae9dfaba259c7fc34ddff8858e (diff)
hydron: fix strict deps build
Diffstat (limited to 'pkgs/servers/hydron')
-rw-r--r--pkgs/servers/hydron/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/servers/hydron/default.nix b/pkgs/servers/hydron/default.nix
index 6ac37a98deea..145d341bb516 100644
--- a/pkgs/servers/hydron/default.nix
+++ b/pkgs/servers/hydron/default.nix
@@ -15,8 +15,10 @@ buildGoPackage {
};
enableParallelBuilding = true;
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ ffmpeg-full graphicsmagick quicktemplate go-bindata easyjson ];
+
+ nativeBuildInputs = [ pkgconfig go-bindata ];
+
+ buildInputs = [ ffmpeg-full graphicsmagick quicktemplate easyjson ];
meta = with stdenv.lib; {
homepage = "https://github.com/bakape/hydron";