-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Aleksana <[email protected]> Co-authored-by: Cosima Neidahl <[email protected]>
- Loading branch information
1 parent
af810fc
commit a38bfa7
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ lib | ||
, stdenv | ||
, fetchFromBitbucket | ||
, asciidoc | ||
}: | ||
|
||
stdenv.mkDerivation (finalAttrs: { | ||
pname = "cc1541"; | ||
version = "4.1"; | ||
|
||
src = fetchFromBitbucket { | ||
owner = "ptv_claus"; | ||
repo = "cc1541"; | ||
rev = finalAttrs.version; | ||
hash = "sha256-b8cEGC3WxrjebQjed/VD9SIWkiQpNaE2yW+bQRCtmSs="; | ||
}; | ||
|
||
env.ENABLE_MAN = 1; | ||
|
||
makeFlags = [ "prefix=$(out)" ]; | ||
|
||
nativeBuildInputs = [ asciidoc ]; | ||
|
||
doInstallCheck = true; | ||
|
||
installCheckPhase = '' | ||
runHook preCheck | ||
make test | ||
runHook postCheck | ||
''; | ||
|
||
meta = with lib; { | ||
description = "Tool for creating Commodore 1541 Floppy disk images in D64, D71 or D81 format"; | ||
homepage = "https://bitbucket.org/ptv_claus/cc1541/src/master/"; | ||
license = licenses.mit; | ||
maintainers = with maintainers; [ matthewcroughan ]; | ||
mainProgram = "cc1541"; | ||
platforms = platforms.all; | ||
}; | ||
}) |