Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
argo
argopkgs
Commits
2cbd84ee
Commit
2cbd84ee
authored
Dec 04, 2018
by
Valentin Reis
Browse files
added zmcat
parent
df816997
Pipeline
#4414
failed with stages
in 4 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
pkgs/default.nix
View file @
2cbd84ee
{
hostPkgs
?
import
<
nixpkgs
>
{},
system
?
builtins
.
currentSystem
,
pkgs-stable
?
import
../pin.nix
{
inherit
hostPkgs
;
jsonpath
=
../nixpkgs-18.03.json
;
depset
=
{
inherit
system
;};
},
pkgs
?
import
../pin.nix
{
inherit
hostPkgs
;
jsonpath
=
../nixpkgs-unstable.json
;
depset
=
{
inherit
system
;};
},
kapack
?
import
../pin.nix
{
hostPkgs
=
pkgs
;
jsonpath
=
../kapack.json
;
depset
=
{
hostPkgs
=
pkgs
;};},
supportedSystems
?
[
"x86_64-linux"
"i686-linux"
]
...
...
@@ -92,6 +93,8 @@ let
cc
=
icc
;
});
};
zmcat
=
pkgs-stable
.
haskellPackages
.
callPackage
./tools/zmcat
{};
};
in
argopkgs
//
pkgs
pkgs/tools/zmcat/default.nix
0 → 100644
View file @
2cbd84ee
{
fetchFromGitHub
,
mkDerivation
,
base
,
bytestring
,
stdenv
,
zeromq4-haskell
}:
mkDerivation
{
pname
=
"zmcat"
;
version
=
"0.2"
;
src
=
fetchFromGitHub
{
owner
=
"freuk"
;
repo
=
"zmcat"
;
rev
=
"master"
;
sha256
=
"1lvzb989gzj95mycnx8j1dck8asa85brspq8z492jm1rzgkc1qn7"
;
};
isLibrary
=
true
;
isExecutable
=
true
;
libraryHaskellDepends
=
[
base
bytestring
zeromq4-haskell
];
executableHaskellDepends
=
[
base
bytestring
];
homepage
=
"https://github.com/lucasdicioccio/zmcat"
;
description
=
"Command-line tool for ZeroMQ"
;
license
=
stdenv
.
lib
.
licenses
.
bsd3
;
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment