Skip to content

Commit

Permalink
nix files updated
Browse files Browse the repository at this point in the history
  • Loading branch information
MichelBoucey committed Aug 20, 2024
1 parent 7958f7d commit 70612fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
File renamed without changes.
6 changes: 4 additions & 2 deletions ip6addr.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
{ mkDerivation, base, cmdargs, IPv6Addr, lib, text }:
{ mkDerivation, base, IPv6Addr, lib, optparse-applicative, text }:
mkDerivation {
pname = "ip6addr";
version = "2.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base cmdargs IPv6Addr text ];
executableHaskellDepends = [
base IPv6Addr optparse-applicative text
];
homepage = "https://github.com/MichelBoucey/ip6addr";
description = "Commandline tool to deal with IPv6 address text representations";
license = lib.licenses.bsd3;
Expand Down

0 comments on commit 70612fa

Please sign in to comment.