Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
horizon-platform
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Théophile Choutri
horizon-platform
Commits
e9d47e92
Unverified
Commit
e9d47e92
authored
1 year ago
by
Marijan Petričević
Browse files
Options
Downloads
Patches
Plain Diff
data-dword: init at 0.3.2.1
parent
72e63449
Branches
Branches containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
horizon.dhall
+1
-0
1 addition, 0 deletions
horizon.dhall
horizon.lock
+4
-0
4 additions, 0 deletions
horizon.lock
overlay.nix
+2
-0
2 additions, 0 deletions
overlay.nix
pkgs/data-dword.nix
+26
-0
26 additions, 0 deletions
pkgs/data-dword.nix
with
33 additions
and
0 deletions
horizon.dhall
+
1
−
0
View file @
e9d47e92
...
...
@@ -155,6 +155,7 @@ let packages =
, cursor-gen = H.callHackage "cursor-gen" "0.4.0.0"
, data-binary-ieee754 = H.callHackage "data-binary-ieee754" "0.4.4"
, data-bword = H.callHackage "data-bword" "0.1.0.2"
, data-dword = H.callHackage "data-dword" "0.3.2.1"
, data-checked = H.callHackage "data-checked" "0.3"
, data-endian = H.callHackage "data-endian" "0.1.1"
, data-ordlist = H.callHackage "data-ordlist" "0.4.7.0"
...
...
This diff is collapsed.
Click to expand it.
horizon.lock
+
4
−
0
View file @
e9d47e92
...
...
@@ -474,6 +474,10 @@
, mapValue =
"2bd00dfe8dd52f1b4018dca78c44cc7a40909619550a6c49b20bb86b805f14fd"
}
, { mapKey = "data-dword"
, mapValue =
"310100a03408bde7002169c4c15c7f8052ae57dcc8bdaef4f789cef9479ce1f4"
}
, { mapKey = "data-endian"
, mapValue =
"140ab2b54e94c8f7817ac37836ef88794b7f2bd0867b7b07c4bac248a374b519"
...
...
This diff is collapsed.
Click to expand it.
overlay.nix
+
2
−
0
View file @
e9d47e92
...
...
@@ -239,6 +239,8 @@ final: prev: with pkgs.haskell.lib; {
data-checked
=
final
.
callPackage
(
./pkgs/data-checked.nix
)
{
};
data-dword
=
final
.
callPackage
(
./pkgs/data-dword.nix
)
{
};
data-endian
=
final
.
callPackage
(
./pkgs/data-endian.nix
)
{
};
data-ordlist
=
final
.
callPackage
(
./pkgs/data-ordlist.nix
)
{
};
...
...
This diff is collapsed.
Click to expand it.
pkgs/data-dword.nix
0 → 100644
+
26
−
0
View file @
e9d47e92
{
mkDerivation
,
base
,
data-bword
,
ghc-prim
,
hashable
,
lib
,
tasty
,
tasty-quickcheck
,
template-haskell
}:
mkDerivation
{
pname
=
"data-dword"
;
version
=
"0.3.2.1"
;
sha256
=
"1114f1efd8f8e80517f7a1df7e73e8a0f3dcc9414f3ba5669f05b29f90dfdd50"
;
isLibrary
=
true
;
isExecutable
=
false
;
enableSeparateDataOutput
=
false
;
libraryHaskellDepends
=
[
base
data-bword
ghc-prim
hashable
template-haskell
];
testHaskellDepends
=
[
base
tasty
tasty-quickcheck
];
enableLibraryProfiling
=
true
;
enableExecutableProfiling
=
true
;
doHaddock
=
false
;
jailbreak
=
true
;
doCheck
=
false
;
doBenchmark
=
false
;
hyperlinkSource
=
false
;
homepage
=
"https://github.com/mvv/data-dword"
;
description
=
"Stick two binary words together to get a bigger one"
;
license
=
lib
.
licenses
.
bsd3
;
broken
=
false
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
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!
Save comment
Cancel
Please
register
or
sign in
to comment